@inipa/common 1.0.38 → 1.0.40
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/README.md +336 -248
- package/build/tool/interface.d.ts +24 -0
- package/build/tool/interface.d.ts.map +1 -1
- package/build/tool/interface.js +29 -1
- package/build/tool/interface.js.map +1 -1
- package/build/tool/require.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,48 +1,61 @@
|
|
|
1
1
|
## Getting Started
|
|
2
2
|
|
|
3
|
-
|
|
4
3
|
```bash
|
|
5
4
|
npm install @inipa/common;
|
|
6
5
|
|
|
7
6
|
import {Ihttp} from '@inipa/common';
|
|
8
7
|
|
|
9
8
|
```
|
|
9
|
+
|
|
10
10
|
## 使用例子:
|
|
11
|
+
|
|
11
12
|
注:当需要请求验证接口时,要求传入token. 下面的接口会依次说明
|
|
12
13
|
const http = new Ihttp(token?:string);
|
|
13
14
|
|
|
14
15
|
const result = await http.getTrademarkByNumber("TM_NEW_CHINA_2026022116146743879136");
|
|
15
16
|
console.log(result);
|
|
17
|
+
|
|
16
18
|
## ===============================以下方法无需登陆============================================
|
|
19
|
+
|
|
17
20
|
## login 会员登陆
|
|
21
|
+
|
|
18
22
|
- param: email: string (注册邮箱)
|
|
19
23
|
- param: password: string (密码)
|
|
20
|
-
- 调用方式: await http.login(email, password);
|
|
24
|
+
- 调用方式: await http.login(email, password);
|
|
21
25
|
- 操作结果: token ,请此token保存并在需要验证的方法上传入实例化对象
|
|
26
|
+
|
|
22
27
|
## register(data:RegisterDto) 会员注册
|
|
28
|
+
|
|
23
29
|
- RegisterDto: {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
30
|
+
email: string;
|
|
31
|
+
username: string;
|
|
32
|
+
password: string;
|
|
33
|
+
confirmPassword: string;
|
|
34
|
+
captcha: string;
|
|
29
35
|
}
|
|
30
36
|
- 调用方式: await http.register({email:'xxxx', password: 'xxxxx', confirmPassword: 'xxxx', captcha: 'xxxx'})
|
|
31
37
|
- 操作结果: 注册成功或错误提示
|
|
38
|
+
|
|
32
39
|
## sendEmailCaptcha 发送邮箱验证码
|
|
40
|
+
|
|
33
41
|
- param: email: string (注册邮箱)
|
|
34
42
|
- 调用方式: await http.sendEmailCaptcha(email);
|
|
35
43
|
- 操作结果: 提示信息,并发送验证码到对应邮箱
|
|
36
44
|
|
|
37
45
|
## ===============================以下方法都需要先登陆后才可以操作===============================
|
|
38
|
-
|
|
46
|
+
|
|
47
|
+
## 请在初始化实例时传入token
|
|
48
|
+
|
|
39
49
|
- const http = new Ihttp('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJtZW1iZXJJZCI6MSwibWVtYmVyRW1haWwiOiIxMTM2NzAwNDJAcXEuY29tIiwiY3JlYXRlZERhdGUiOiIyMDI2LTAzLTIwVDEzOjMxOjQyLjAwMFoiLCJpYXQiOjE3NzQwODM2OTIsImV4cCI6MTc3NDA4NzI5Mn0.mlKJzMhlEwp1qQMgWBUFzjJCvBtpu-epVpl1jEZTAm4')
|
|
50
|
+
|
|
40
51
|
## getContinent() 方法及数据字段说明
|
|
52
|
+
|
|
41
53
|
- 调用方式: await http.getContinent();
|
|
42
54
|
- 获取五大洲数据,返回数组格式如下:
|
|
43
55
|
- 操作结果:[{chineseName: "亚洲", id:1, name:"Asia"}]
|
|
44
56
|
|
|
45
57
|
## getCountryByContinent(continentId: number) 获取各大洲下的国家信息
|
|
58
|
+
|
|
46
59
|
- 调用方式: await http.getCountryByContinent(1);
|
|
47
60
|
- chinesename : string (中文名)
|
|
48
61
|
- isHotAnnuityManagement : boolean (年金管理热门国家)
|
|
@@ -54,85 +67,89 @@ console.log(result);
|
|
|
54
67
|
- name : string (英文名)
|
|
55
68
|
|
|
56
69
|
## getServices() 获取服务内容
|
|
70
|
+
|
|
57
71
|
- 调用方式: await http.getServices()
|
|
58
72
|
- 返回数组结构如下
|
|
59
73
|
- [{id:1, chineseName: '商标注册', name: 'Trademark Registration', services: [{id:1, name: 'New Application', chineseName: '新申请'}]}]
|
|
60
74
|
- 说明,这个数组第一层为项目,对应我们六大项目,每个项目下有对应的服务
|
|
61
75
|
|
|
62
76
|
## getProfile() 获取会员个人资料
|
|
77
|
+
|
|
63
78
|
- 调用方式: await http.getProfile()
|
|
64
|
-
- 操作结果:
|
|
65
|
-
id: number
|
|
66
|
-
email: string (邮箱)
|
|
67
|
-
gender: string (性别)
|
|
68
|
-
name: string (姓名)
|
|
69
|
-
address: stirng (详细地址)
|
|
70
|
-
avatar: string (头像)
|
|
71
|
-
balance: number (帐户余额)
|
|
72
|
-
billingAddress: string (账单地址)
|
|
73
|
-
company:string (公司名称)
|
|
74
|
-
country:string (国家)
|
|
75
|
-
city: string (所在城市)
|
|
76
|
-
createdDate:Date (创建时间)
|
|
77
|
-
dingding: string (钉钉)
|
|
78
|
-
facebook:string
|
|
79
|
-
grade: number (会员等级)
|
|
80
|
-
instagram: string
|
|
81
|
-
province: string (省份)
|
|
82
|
-
taxId: string (税号)
|
|
83
|
-
totalAmount: number 消息总金额 (包括未付款,已付款,已取消)
|
|
84
|
-
totalCancelOrders: number (取消订单总数)
|
|
85
|
-
totalOrders: number (订单总数)
|
|
86
|
-
totalPaidOrders: number (已付款订单总数)
|
|
87
|
-
totalSpending: number (总消费金额,只包括已付款)
|
|
88
|
-
totalUnpaidOrders: number (未付款订单总数)
|
|
89
|
-
username: string (用户名)
|
|
90
|
-
weCom: string (微信企业号)
|
|
91
|
-
website: string (公司网址)
|
|
92
|
-
wechat: string (微信)
|
|
93
|
-
whatsapp: string
|
|
94
|
-
xiaohongshu: string (小红书)
|
|
79
|
+
- 操作结果:
|
|
80
|
+
id: number
|
|
81
|
+
email: string (邮箱)
|
|
82
|
+
gender: string (性别)
|
|
83
|
+
name: string (姓名)
|
|
84
|
+
address: stirng (详细地址)
|
|
85
|
+
avatar: string (头像)
|
|
86
|
+
balance: number (帐户余额)
|
|
87
|
+
billingAddress: string (账单地址)
|
|
88
|
+
company:string (公司名称)
|
|
89
|
+
country:string (国家)
|
|
90
|
+
city: string (所在城市)
|
|
91
|
+
createdDate:Date (创建时间)
|
|
92
|
+
dingding: string (钉钉)
|
|
93
|
+
facebook:string
|
|
94
|
+
grade: number (会员等级)
|
|
95
|
+
instagram: string
|
|
96
|
+
province: string (省份)
|
|
97
|
+
taxId: string (税号)
|
|
98
|
+
totalAmount: number 消息总金额 (包括未付款,已付款,已取消)
|
|
99
|
+
totalCancelOrders: number (取消订单总数)
|
|
100
|
+
totalOrders: number (订单总数)
|
|
101
|
+
totalPaidOrders: number (已付款订单总数)
|
|
102
|
+
totalSpending: number (总消费金额,只包括已付款)
|
|
103
|
+
totalUnpaidOrders: number (未付款订单总数)
|
|
104
|
+
username: string (用户名)
|
|
105
|
+
weCom: string (微信企业号)
|
|
106
|
+
website: string (公司网址)
|
|
107
|
+
wechat: string (微信)
|
|
108
|
+
whatsapp: string
|
|
109
|
+
xiaohongshu: string (小红书)
|
|
95
110
|
|
|
96
111
|
## getServiceFee(serviceId:number) 获取服务收费设置
|
|
112
|
+
|
|
97
113
|
- 调用方式: await http.getServiceFee(1)
|
|
98
114
|
- 操作结果:
|
|
99
|
-
qtyFrom:number 开始数量
|
|
100
|
-
qtyTo: number 结束数量
|
|
101
|
-
officialFee: number 官方规定费用
|
|
102
|
-
calculationMethod: number 官方服务费计算方式: 1(固定金额,无关数量)2(递增固定金额,从第二件开始每件增加50元)3(倍增,官方费用和本地律师费乘以件数)
|
|
103
|
-
incrementOfficalFee: number 官方服务费递增固定金额, 当calculationMethod等于3时使用
|
|
104
|
-
incrementAttorneyFee: number 本地律师服务费递增固定金额, 当calculationMethod等于3时使用
|
|
105
|
-
attorneyDirectFilingFee: number 律师直通提交价
|
|
106
|
-
attorneyOptimalFee: number 律师最优(竞价)
|
|
107
|
-
attorneyStandardServiceFee: number 律师标准服务
|
|
108
|
-
inipaFee: number INIPA 服务费
|
|
109
|
-
optionalFee: number 附加费用
|
|
110
|
-
optionalFeeReason: string 附加费用原因
|
|
111
|
-
remark: string 备注
|
|
115
|
+
qtyFrom:number 开始数量
|
|
116
|
+
qtyTo: number 结束数量
|
|
117
|
+
officialFee: number 官方规定费用
|
|
118
|
+
calculationMethod: number 官方服务费计算方式: 1(固定金额,无关数量)2(递增固定金额,从第二件开始每件增加50元)3(倍增,官方费用和本地律师费乘以件数)
|
|
119
|
+
incrementOfficalFee: number 官方服务费递增固定金额, 当calculationMethod等于3时使用
|
|
120
|
+
incrementAttorneyFee: number 本地律师服务费递增固定金额, 当calculationMethod等于3时使用
|
|
121
|
+
attorneyDirectFilingFee: number 律师直通提交价
|
|
122
|
+
attorneyOptimalFee: number 律师最优(竞价)
|
|
123
|
+
attorneyStandardServiceFee: number 律师标准服务
|
|
124
|
+
inipaFee: number INIPA 服务费
|
|
125
|
+
optionalFee: number 附加费用
|
|
126
|
+
optionalFeeReason: string 附加费用原因
|
|
127
|
+
remark: string 备注
|
|
112
128
|
- 注: qtyFrom 和 qtyTo 用于判断数量对应价格,如:qtyFrom=1, qtyTo=5,表示在这个区间内的数量都以这个设定价格
|
|
113
129
|
|
|
114
130
|
## createTrademark(data: TrademarkDto) 创建商标注册新申请订单
|
|
131
|
+
|
|
115
132
|
- 先import {TrademarkServiceType,LocalAttorneyFeeTireType,ProjectType} from '@inipa/common'
|
|
116
133
|
- 调用方式: await http.createTrademark(data)
|
|
117
134
|
- 操作结果,返回提示信息及订单号
|
|
118
135
|
- 字段说明:
|
|
119
|
-
interface TrademarkDto {
|
|
136
|
+
interface TrademarkDto {
|
|
120
137
|
country: string; 国家
|
|
121
138
|
currency: string; 货币
|
|
122
139
|
remark?: string; 备注
|
|
123
140
|
localAttorneyFeeTire: LocalAttorneyFeeTireType.OptimalBid | LocalAttorneyFeeTireType.DirectFiling | LocalAttorneyFeeTireType.StandardService; 本地律师服务费等级,Optimal Bid(最优竞标), Direct Filing(直接递交),Standard Service(标准服务)
|
|
124
141
|
service:TrademarkServiceType.NewApplication
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
142
|
+
| TrademarkServiceType.Renewal
|
|
143
|
+
| TrademarkServiceType.InformationChange
|
|
144
|
+
| TrademarkServiceType.Transfer
|
|
145
|
+
| TrademarkServiceType.OAReply; // 服务项目:新申请,续展,信息变更,转让,OA答复
|
|
129
146
|
project:
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
147
|
+
| ProjectType.TrademarkRegistration
|
|
148
|
+
| ProjectType.InventionPatent
|
|
149
|
+
| ProjectType.UtilityModel
|
|
150
|
+
| ProjectType.DesignPatent
|
|
151
|
+
| ProjectType.AnnuityManagement
|
|
152
|
+
| ProjectType.CopyrightRegistration;
|
|
136
153
|
trademarkName: string; // 商标名称
|
|
137
154
|
applicantName: string; // 申请人名称或公司名称
|
|
138
155
|
priorityClaim: boolean; // 优先权声明
|
|
@@ -142,38 +159,40 @@ interface TrademarkDto {
|
|
|
142
159
|
servicesList: string; // 商品与服务清单
|
|
143
160
|
quantity: number; // 数量
|
|
144
161
|
docs: string; // 上传文件之后,会返回一个shasum,将所有shasum用半角逗号 , 拼接起来。 $2b$10$bH9fUB5lhDl9HEM96ebSW.TLeTOg74zYcVLnpTna6bfqSedkm34Iu,$2b$10$kMx1aWFaecYbQT8zDkoFQOjyiJ0la6ZM2Ff5RB0A1lBIQdUXbQuky
|
|
145
|
-
}
|
|
162
|
+
}
|
|
146
163
|
|
|
147
164
|
## getTrademarkById(orderId:number) 通过订单ID 或 getTrademarkByNumber(number:string)通过订单号获取商标注册订单信息
|
|
165
|
+
|
|
148
166
|
- 调用方式:await http.getTrademarkById(1);
|
|
149
167
|
- 操作结果:
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
168
|
+
id: number
|
|
169
|
+
number: string // 订单号
|
|
170
|
+
service: string // 服务类型
|
|
171
|
+
country: string // 国家
|
|
172
|
+
totalAmount: number // 总金额
|
|
173
|
+
officialFee: number // 官方规定费用
|
|
174
|
+
localAttorneyFee: number // 本地律师费
|
|
175
|
+
serviceFee: number // INIPO 服务费
|
|
176
|
+
currency: string // 货币
|
|
177
|
+
remark: string // 备注
|
|
178
|
+
status: number // 订单状态:0(待处理)1(处理中)2(已完成)3(已取消)
|
|
179
|
+
createdDate: Date // 创建时间
|
|
180
|
+
localAttorneyFeeTire: string // 本地律师服务费等级
|
|
181
|
+
quantity: number // 数量
|
|
182
|
+
trademarkName: string // 商标名称
|
|
183
|
+
applicantName: string; // 申请人名称或公司名称
|
|
184
|
+
priorityClaim: boolean; // 优先权声明
|
|
185
|
+
priorityCountry?: string | null; // 优先权国家
|
|
186
|
+
priorityDate?: Date | null; // 优先权日期
|
|
187
|
+
priorityNumber?: string | null; // 优先权号
|
|
188
|
+
servicesList: string; // 商品与服务清单
|
|
189
|
+
files { // 相关文档
|
|
190
|
+
originalName: string; // 文档名称
|
|
191
|
+
shasum: string; 文件校验码
|
|
192
|
+
}
|
|
175
193
|
|
|
176
194
|
## getExchangeRate() 获取当日货币汇率, 每日只需要请求一次接口,数据保存在本地,数据每天凌晨1点采集
|
|
195
|
+
|
|
177
196
|
- 调用方式:await http.getExchangeRate()
|
|
178
197
|
- 操作结果:
|
|
179
198
|
code: "SUCCESS"
|
|
@@ -186,6 +205,7 @@ interface TrademarkDto {
|
|
|
186
205
|
date : 采集时间
|
|
187
206
|
|
|
188
207
|
## uploadFile(file:File) 文件上传
|
|
208
|
+
|
|
189
209
|
- 调用方式: await http.uploadFile(file)
|
|
190
210
|
- 操作结果
|
|
191
211
|
originalName: "01KGRGSMX7CXPB56007DBCFE2Q.jpeg"
|
|
@@ -197,6 +217,7 @@ interface TrademarkDto {
|
|
|
197
217
|
url: 文件地址
|
|
198
218
|
|
|
199
219
|
## updateProfile(data:ProfileDto)更新会员个人资料
|
|
220
|
+
|
|
200
221
|
- 调用方式:await http.updateProfile(data)
|
|
201
222
|
- 操作结果:
|
|
202
223
|
返回最新结果
|
|
@@ -224,8 +245,8 @@ interface TrademarkDto {
|
|
|
224
245
|
- 操作结果:
|
|
225
246
|
code: "SUCCESS"
|
|
226
247
|
data: {
|
|
227
|
-
|
|
228
|
-
|
|
248
|
+
list: [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}],
|
|
249
|
+
meta: {itemsPerPage: 10, totalItems: 34, currentPage: 1, totalPages: 4}
|
|
229
250
|
}
|
|
230
251
|
message: "数据获取成功"
|
|
231
252
|
statusCode: 200
|
|
@@ -240,8 +261,8 @@ interface TrademarkDto {
|
|
|
240
261
|
- 操作结果:
|
|
241
262
|
code: "SUCCESS"
|
|
242
263
|
data: {
|
|
243
|
-
|
|
244
|
-
|
|
264
|
+
list: [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}],
|
|
265
|
+
meta: {itemsPerPage: 10, totalItems: 34, currentPage: 1, totalPages: 4}
|
|
245
266
|
}
|
|
246
267
|
message: "数据获取成功"
|
|
247
268
|
statusCode: 200
|
|
@@ -252,46 +273,49 @@ interface TrademarkDto {
|
|
|
252
273
|
- 注: list 数组里面的对象内容可参考getCaseById获取的内容介绍
|
|
253
274
|
|
|
254
275
|
## getCaseById(caseId:number) 通过案件ID 或 getCaseByNumber(number:string)通过案件编号获取案件信息
|
|
276
|
+
|
|
255
277
|
- 调用方式:await http.getCaseById(1);
|
|
256
278
|
- 操作结果:
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
279
|
+
name: string; // 客户/案名
|
|
280
|
+
number: string; // 案件编号
|
|
281
|
+
status: string; // 当前状态
|
|
282
|
+
service: string; // 服务类型
|
|
283
|
+
createdDate: Date; // 创建时间
|
|
284
|
+
files { // 相关文档
|
|
285
|
+
originalName: string; // 文档名称
|
|
286
|
+
shasum: string; 文件校验码
|
|
287
|
+
}
|
|
288
|
+
timelines { // 进度时间轴
|
|
289
|
+
name: string; // 进度名称
|
|
290
|
+
date: Date; // 时间
|
|
291
|
+
status: string; // 状态
|
|
292
|
+
}
|
|
293
|
+
|
|
271
294
|
## createInventionPatent(data: InventionPatentDto) 创建发明专利新申请订单
|
|
295
|
+
|
|
272
296
|
- 先import {FilingRouteType,InventionPatentServiceType,LocalAttorneyFeeTireType,ProjectType} from '@inipa/common'
|
|
273
297
|
- 调用方式: await http.createInventionPatent(data)
|
|
274
298
|
- 操作结果,返回提示信息及订单号
|
|
275
299
|
- 字段说明:
|
|
276
|
-
InventionPatentDto {
|
|
300
|
+
InventionPatentDto {
|
|
277
301
|
country: string;
|
|
278
302
|
currency: string;
|
|
279
303
|
remark?: string;
|
|
280
304
|
localAttorneyFeeTire: LocalAttorneyFeeTireType.OptimalBid | LocalAttorneyFeeTireType.DirectFiling | LocalAttorneyFeeTireType.StandardService; 本地律师服务费等级,Optimal Bid(最优竞标), Direct Filing(直接递交),Standard Service(标准服务)
|
|
281
305
|
service:
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
306
|
+
| InventionPatentServiceType.NewApplication
|
|
307
|
+
| InventionPatentServiceType.Examination
|
|
308
|
+
| InventionPatentServiceType.BiblioChange
|
|
309
|
+
| InventionPatentServiceType.Assignment
|
|
310
|
+
| InventionPatentServiceType.GrantFee
|
|
311
|
+
| InventionPatentServiceType.Publication;
|
|
288
312
|
project:
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
313
|
+
| ProjectType.TrademarkRegistration
|
|
314
|
+
| ProjectType.InventionPatent
|
|
315
|
+
| ProjectType.UtilityModel
|
|
316
|
+
| ProjectType.DesignPatent
|
|
317
|
+
| ProjectType.AnnuityManagement
|
|
318
|
+
| ProjectType.CopyrightRegistration;
|
|
295
319
|
inventionName: string; // 发明名称
|
|
296
320
|
clientReferentNumber: string; // 客户案号
|
|
297
321
|
filingRoute: FilingRouteType.DivisionalApply | FilingRouteType.PCTNationalPhase | FilingRouteType.StandardRoute; // 递交路径
|
|
@@ -305,63 +329,65 @@ InventionPatentDto {
|
|
|
305
329
|
requestEarlyPublic?: boolean; // 请求提前公开
|
|
306
330
|
quantity: number;
|
|
307
331
|
docs: string; // 上传文件之后,会返回一个shasum,将所有shasum用半角逗号 , 拼接起来。 $2b$10$bH9fUB5lhDl9HEM96ebSW.TLeTOg74zYcVLnpTna6bfqSedkm34Iu,$2b$10$kMx1aWFaecYbQT8zDkoFQOjyiJ0la6ZM2Ff5RB0A1lBIQdUXbQuky
|
|
308
|
-
}
|
|
332
|
+
}
|
|
333
|
+
|
|
309
334
|
## getInventionPatentById(orderId:number) 通过订单ID 或 getInventionPatentByNumber(number:string)通过订单号获取发明专利单信息
|
|
335
|
+
|
|
310
336
|
- 调用方式:await http.getInventionPatentById(1);
|
|
311
337
|
- 操作结果:
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
338
|
+
id: number
|
|
339
|
+
number: string // 订单号
|
|
340
|
+
service: string // 服务类型
|
|
341
|
+
country: string // 国家
|
|
342
|
+
totalAmount: number // 总金额
|
|
343
|
+
officialFee: number // 官方规定费用
|
|
344
|
+
localAttorneyFee: number // 本地律师费
|
|
345
|
+
serviceFee: number // INIPO 服务费
|
|
346
|
+
currency: string // 货币
|
|
347
|
+
remark: string // 备注
|
|
348
|
+
status: number // 订单状态:0(待处理)1(处理中)2(已完成)3(已取消)
|
|
349
|
+
createdDate: Date // 创建时间
|
|
350
|
+
localAttorneyFeeTire: string // 本地律师服务费等级
|
|
351
|
+
quantity: number // 数量
|
|
352
|
+
inventionName: string; //发明名称
|
|
353
|
+
clientReferentNumber: string; //客户案号
|
|
354
|
+
filingRoute: FilingRouteType // 递交路径
|
|
355
|
+
inventor: string; // 发明人
|
|
356
|
+
applicantName: string; // 申请人名称或公司名称
|
|
357
|
+
priorityClaim: boolean; // 优先权声明
|
|
358
|
+
priorityCountry?: string | null; // 优先权国家
|
|
359
|
+
priorityDate?: Date | null; // 优先权日期
|
|
360
|
+
priorityNumber?: string | null; // 优先权号
|
|
361
|
+
requestExam: boolean; // 请求实审
|
|
362
|
+
requestEarlyPublic: boolean; // 请求提前公开
|
|
363
|
+
files { // 相关文档
|
|
364
|
+
originalName: string; // 文档名称
|
|
365
|
+
shasum: string; 文件校验码
|
|
366
|
+
}
|
|
341
367
|
|
|
342
368
|
## createUtilityModel(data: UtilityModelDto) 创建实用新型订单
|
|
343
|
-
|
|
369
|
+
|
|
370
|
+
- 先import {FilingRouteType,UtilityModelServiceType,LocalAttorneyFeeTireType,ProjectType,ChangeItemType} from '@inipa/common'
|
|
344
371
|
- 调用方式: await http.createUtilityModel(data)
|
|
345
372
|
- 操作结果,返回提示信息及订单号
|
|
346
373
|
- 字段说明:
|
|
347
|
-
UtilityModelDto {
|
|
374
|
+
UtilityModelDto {
|
|
348
375
|
country: string;
|
|
349
376
|
currency: string;
|
|
350
377
|
localAttorneyFeeTire: LocalAttorneyFeeTireType.OptimalBid | LocalAttorneyFeeTireType.DirectFiling | LocalAttorneyFeeTireType.
|
|
351
378
|
service:
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
| InventionPatentServiceType.Publication;
|
|
379
|
+
| UtilityModelServiceType.NewApplication
|
|
380
|
+
| UtilityModelServiceType.EvaluationReport
|
|
381
|
+
| UtilityModelServiceType.GrantFee
|
|
382
|
+
| UtilityModelServiceType.BiblioChange
|
|
383
|
+
| UtilityModelServiceType.Assignment;
|
|
358
384
|
project:
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
385
|
+
| ProjectType.TrademarkRegistration
|
|
386
|
+
| ProjectType.InventionPatent
|
|
387
|
+
| ProjectType.UtilityModel
|
|
388
|
+
| ProjectType.DesignPatent
|
|
389
|
+
| ProjectType.AnnuityManagement
|
|
390
|
+
| ProjectType.CopyrightRegistration;
|
|
365
391
|
utilityModelName: string; // 实用新型名称
|
|
366
392
|
clientReferentNumber: string; // 客户案号
|
|
367
393
|
filingRoute: FilingRouteType.DivisionalApply | FilingRouteType.PCTNationalPhase | FilingRouteType.StandardRoute; // 递交路径
|
|
@@ -379,67 +405,68 @@ UtilityModelDto {
|
|
|
379
405
|
quantity: number;
|
|
380
406
|
remark?: string;
|
|
381
407
|
docs: string; // 上传文件之后,会返回一个shasum,将所有shasum用半角逗号 , 拼接起来。 $2b$10$bH9fUB5lhDl9HEM96ebSW.TLeTOg74zYcVLnpTna6bfqSedkm34Iu,$2b$10$kMx1aWFaecYbQT8zDkoFQOjyiJ0la6ZM2Ff5RB0A1lBIQdUXbQuky
|
|
382
|
-
}
|
|
408
|
+
}
|
|
383
409
|
|
|
384
410
|
## getUtilityModelDetailById(orderId:number) 通过订单ID 或 getUtilityModelDetailByNumber(number:string)通过订单号获取实用新型单信息
|
|
411
|
+
|
|
385
412
|
- 调用方式:await http.getUtilityModelById(1);
|
|
386
413
|
- 操作结果:
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
414
|
+
id: number
|
|
415
|
+
number: string // 订单号
|
|
416
|
+
service: string // 服务类型
|
|
417
|
+
country: string // 国家
|
|
418
|
+
totalAmount: number // 总金额
|
|
419
|
+
officialFee: number // 官方规定费用
|
|
420
|
+
localAttorneyFee: number // 本地律师费
|
|
421
|
+
serviceFee: number // INIPO 服务费
|
|
422
|
+
currency: string // 货币
|
|
423
|
+
remark: string // 备注
|
|
424
|
+
status: number // 订单状态:0(待处理)1(处理中)2(已完成)3(已取消)
|
|
425
|
+
createdDate: Date // 创建时间
|
|
426
|
+
localAttorneyFeeTire: string // 本地律师服务费等级
|
|
427
|
+
quantity: number // 数量
|
|
428
|
+
utilityModelName: string; //实用新型名称
|
|
429
|
+
clientReferentNumber: string; //客户案号
|
|
430
|
+
filingRoute: FilingRouteType // 递交路径
|
|
431
|
+
inventor: string; // 发明人
|
|
432
|
+
applicantName: string; // 申请人名称或公司名称
|
|
433
|
+
priorityClaim: boolean; // 优先权声明
|
|
434
|
+
priorityCountry?: string | null; // 优先权国家
|
|
435
|
+
priorityDate?: Date | null; // 优先权日期
|
|
436
|
+
priorityNumber?: string | null; // 优先权号
|
|
437
|
+
valuationReport: boolean; // 评估报告
|
|
438
|
+
changeItem: string; //变更项目
|
|
439
|
+
changeNewInformation: string; // 新信息
|
|
440
|
+
assignor: string; // 转让人
|
|
441
|
+
assignee: string; // 受让人
|
|
442
|
+
files { // 相关文档
|
|
443
|
+
originalName: string; // 文档名称
|
|
444
|
+
shasum: string; 文件校验码
|
|
445
|
+
}
|
|
419
446
|
|
|
420
447
|
## createDesignPatent(data: DesignPatentDto) 创建外观专利订单
|
|
421
|
-
|
|
422
|
-
-
|
|
448
|
+
|
|
449
|
+
- 先import {FilingRouteType,DesignPatentServiceType,LocalAttorneyFeeTireType,ProjectType,ChangeItemType} from '@inipa/common'
|
|
450
|
+
- 调用方式: await http.createDesignPatent(data)
|
|
423
451
|
- 操作结果,返回提示信息及订单号
|
|
424
452
|
- 字段说明:
|
|
425
|
-
UtilityModelDto {
|
|
453
|
+
UtilityModelDto {
|
|
426
454
|
country: string;
|
|
427
455
|
currency: string;
|
|
428
456
|
localAttorneyFeeTire: LocalAttorneyFeeTireType.OptimalBid | LocalAttorneyFeeTireType.DirectFiling | LocalAttorneyFeeTireType.
|
|
429
457
|
service:
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
| InventionPatentServiceType.Publication;
|
|
458
|
+
| DesignPatentServiceType.NewApplication
|
|
459
|
+
| DesignPatentServiceType.EvaluationReport
|
|
460
|
+
| DesignPatentServiceType.Renewal
|
|
461
|
+
| DesignPatentServiceType.BiblioChange
|
|
462
|
+
| DesignPatentServiceType.Assignment;
|
|
436
463
|
project:
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
464
|
+
| ProjectType.TrademarkRegistration
|
|
465
|
+
| ProjectType.InventionPatent
|
|
466
|
+
| ProjectType.UtilityModel
|
|
467
|
+
| ProjectType.DesignPatent
|
|
468
|
+
| ProjectType.AnnuityManagement
|
|
469
|
+
| ProjectType.CopyrightRegistration;
|
|
443
470
|
designPatentlName: string; // 外观名称
|
|
444
471
|
clientReferentNumber: string; // 客户案号
|
|
445
472
|
locarnoClass: string; // 洛迦诺分类
|
|
@@ -458,40 +485,101 @@ UtilityModelDto {
|
|
|
458
485
|
quantity: number;
|
|
459
486
|
remark?: string;
|
|
460
487
|
docs: string; // 上传文件之后,会返回一个shasum,将所有shasum用半角逗号 , 拼接起来。 $2b$10$bH9fUB5lhDl9HEM96ebSW.TLeTOg74zYcVLnpTna6bfqSedkm34Iu,$2b$10$kMx1aWFaecYbQT8zDkoFQOjyiJ0la6ZM2Ff5RB0A1lBIQdUXbQuky
|
|
461
|
-
}
|
|
462
|
-
|
|
463
|
-
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
## getDesignPatentDetailById(orderId:number) 通过订单ID 或 getDesignPatentDetailByNumber(number:string)通过订单号获取外观专利单信息
|
|
491
|
+
|
|
492
|
+
- 调用方式:await http.getDesignPatentDetailById(1);
|
|
493
|
+
- 操作结果:
|
|
494
|
+
id: number
|
|
495
|
+
number: string // 订单号
|
|
496
|
+
service: string // 服务类型
|
|
497
|
+
country: string // 国家
|
|
498
|
+
totalAmount: number // 总金额
|
|
499
|
+
officialFee: number // 官方规定费用
|
|
500
|
+
localAttorneyFee: number // 本地律师费
|
|
501
|
+
serviceFee: number // INIPO 服务费
|
|
502
|
+
currency: string // 货币
|
|
503
|
+
remark: string // 备注
|
|
504
|
+
status: number // 订单状态:0(待处理)1(处理中)2(已完成)3(已取消)
|
|
505
|
+
createdDate: Date // 创建时间
|
|
506
|
+
localAttorneyFeeTire: string // 本地律师服务费等级
|
|
507
|
+
quantity: number // 数量
|
|
508
|
+
designPatentlName: string; // 外观名称
|
|
509
|
+
clientReferentNumber: string; //客户案号
|
|
510
|
+
locarnoClass: string; // 洛迦诺分类
|
|
511
|
+
designer: string; // 设计人
|
|
512
|
+
applicantName: string; // 申请人名称或公司名称
|
|
513
|
+
priorityClaim: boolean; // 优先权声明
|
|
514
|
+
priorityCountry?: string | null; // 优先权国家
|
|
515
|
+
priorityDate?: Date | null; // 优先权日期
|
|
516
|
+
priorityNumber?: string | null; // 优先权号
|
|
517
|
+
requestDeferment?: boolean; // 请求延时公开
|
|
518
|
+
drawingsService?: boolean; // 专业绘图服务
|
|
519
|
+
changeItem: string; //变更项目
|
|
520
|
+
changeNewInformation: string; // 新信息
|
|
521
|
+
assignor: string; // 转让人
|
|
522
|
+
assignee: string; // 受让人
|
|
523
|
+
files { // 相关文档
|
|
524
|
+
originalName: string; // 文档名称
|
|
525
|
+
shasum: string; 文件校验码
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
## createCopyrightRegistration(data: CopyrightRegistrationDto) 创建版权登记订单
|
|
529
|
+
|
|
530
|
+
- 先import {FilingRouteType,CopyrightRegistrationServiceType,LocalAttorneyFeeTireType,ProjectType,PublicationStatusType,ProcessingSpeedType} from '@inipa/common'
|
|
531
|
+
- 调用方式: await http.createCopyrightRegistration(data)
|
|
532
|
+
- 操作结果,返回提示信息及订单号
|
|
533
|
+
- 字段说明:
|
|
534
|
+
UtilityModelDto {
|
|
535
|
+
country: string;
|
|
536
|
+
currency: string;
|
|
537
|
+
localAttorneyFeeTire: LocalAttorneyFeeTireType.OptimalBid | LocalAttorneyFeeTireType.DirectFiling | LocalAttorneyFeeTireType.
|
|
538
|
+
service:
|
|
539
|
+
| CopyrightRegistrationServiceType.SoftwareApp
|
|
540
|
+
| CopyrightRegistrationServiceType.ArtDesignLogo
|
|
541
|
+
| CopyrightRegistrationServiceType.LiteraryMedia;
|
|
542
|
+
project:
|
|
543
|
+
| ProjectType.TrademarkRegistration
|
|
544
|
+
| ProjectType.InventionPatent
|
|
545
|
+
| ProjectType.UtilityModel
|
|
546
|
+
| ProjectType.DesignPatent
|
|
547
|
+
| ProjectType.AnnuityManagement
|
|
548
|
+
| ProjectType.CopyrightRegistration;
|
|
549
|
+
titleOfTheWork: string; // 作品名称
|
|
550
|
+
author: string; // 作者、权利人
|
|
551
|
+
creationDate: Date; // 创作日期
|
|
552
|
+
publicationStatus: PublicationStatusType.Unpublished | PublicationStatusType.Published; // 发表状态:未发表(Unpublished) 已发表(Published)
|
|
553
|
+
processingSpeed: ProcessingSpeedType.StandardFiling | ProcessingSpeedType.ExpeditedPriority; // 处理速度
|
|
554
|
+
quantity: number;
|
|
555
|
+
remark?: string;
|
|
556
|
+
docs: string; // 上传文件之后,会返回一个shasum,将所有shasum用半角逗号 , 拼接起来。 $2b$10$bH9fUB5lhDl9HEM96ebSW.TLeTOg74zYcVLnpTna6bfqSedkm34Iu,$2b$10$kMx1aWFaecYbQT8zDkoFQOjyiJ0la6ZM2Ff5RB0A1lBIQdUXbQuky
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
## getCopyrightRegistrationlDetailById(orderId:number) 通过订单ID 或 getCopyrightRegistrationlDetailByNumber(number:string)通过订单号获取版权登记信息
|
|
560
|
+
|
|
561
|
+
- 调用方式:await http.getCopyrightRegistrationlDetailById(1);
|
|
464
562
|
- 操作结果:
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
requestDeferment?: boolean; // 请求延时公开
|
|
489
|
-
drawingsService?: boolean; // 专业绘图服务
|
|
490
|
-
changeItem: string; //变更项目
|
|
491
|
-
changeNewInformation: string; // 新信息
|
|
492
|
-
assignor: string; // 转让人
|
|
493
|
-
assignee: string; // 受让人
|
|
494
|
-
files { // 相关文档
|
|
495
|
-
originalName: string; // 文档名称
|
|
496
|
-
shasum: string; 文件校验码
|
|
497
|
-
}
|
|
563
|
+
id: number
|
|
564
|
+
number: string // 订单号
|
|
565
|
+
service: string // 服务类型
|
|
566
|
+
country: string // 国家
|
|
567
|
+
totalAmount: number // 总金额
|
|
568
|
+
officialFee: number // 官方规定费用
|
|
569
|
+
localAttorneyFee: number // 本地律师费
|
|
570
|
+
serviceFee: number // INIPO 服务费
|
|
571
|
+
currency: string // 货币
|
|
572
|
+
remark: string // 备注
|
|
573
|
+
status: number // 订单状态:0(待处理)1(处理中)2(已完成)3(已取消)
|
|
574
|
+
createdDate: Date // 创建时间
|
|
575
|
+
localAttorneyFeeTire: string // 本地律师服务费等级
|
|
576
|
+
quantity: number // 数量
|
|
577
|
+
titleOfTheWork: string; // 作品名称
|
|
578
|
+
author: string; // 作者、权利人
|
|
579
|
+
creationDate: Date; // 创作日期
|
|
580
|
+
publicationStatus: PublicationStatusType;
|
|
581
|
+
processingSpeed: ProcessingSpeedType; // 处理速度
|
|
582
|
+
files { // 相关文档
|
|
583
|
+
originalName: string; // 文档名称
|
|
584
|
+
shasum: string; 文件校验码
|
|
585
|
+
}
|
|
@@ -46,6 +46,30 @@ export declare enum TrademarkServiceType {
|
|
|
46
46
|
Assignment = "Assignment",
|
|
47
47
|
OAReply = "OAReply"
|
|
48
48
|
}
|
|
49
|
+
export declare enum DesignPatentServiceType {
|
|
50
|
+
NewApplication = "NewApplication",
|
|
51
|
+
EvaluationReport = "EvaluationReport",
|
|
52
|
+
Renewal = "Renewal",
|
|
53
|
+
BiblioChange = "BiblioChange",
|
|
54
|
+
Assignment = "Assignment"
|
|
55
|
+
}
|
|
56
|
+
export declare enum UtilityModelServiceType {
|
|
57
|
+
NewApplication = "NewApplication",
|
|
58
|
+
EvaluationReport = "EvaluationReport",
|
|
59
|
+
GrantFee = "GrantFee",
|
|
60
|
+
BiblioChange = "BiblioChange",
|
|
61
|
+
Assignment = "Assignment"
|
|
62
|
+
}
|
|
63
|
+
export declare enum CopyrightRegistrationServiceType {
|
|
64
|
+
SoftwareApp = "SoftwareApp",
|
|
65
|
+
ArtDesignLogo = "ArtDesignLogo",
|
|
66
|
+
LiteraryMedia = "LiteraryMedia"
|
|
67
|
+
}
|
|
68
|
+
export declare enum AnnuityManagementServiceType {
|
|
69
|
+
Invention = "Invention",
|
|
70
|
+
UtilityModel = "UtilityModel",
|
|
71
|
+
Design = "Design"
|
|
72
|
+
}
|
|
49
73
|
export declare enum LocalAttorneyFeeTireType {
|
|
50
74
|
DirectFiling = "DirectFiling",//直接递交
|
|
51
75
|
OptimalBid = "OptimalBid",// 最优(竞标)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interface.d.ts","sourceRoot":"","sources":["../../src/tool/interface.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"interface.d.ts","sourceRoot":"","sources":["../../src/tool/interface.ts"],"names":[],"mappings":"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"}
|
package/build/tool/interface.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ProcessingSpeedType = exports.PublicationStatusType = exports.ChangeItemType = exports.ProjectType = exports.LocalAttorneyFeeTireType = exports.TrademarkServiceType = exports.InventionPatentServiceType = exports.FilingRouteType = void 0;
|
|
3
|
+
exports.ProcessingSpeedType = exports.PublicationStatusType = exports.ChangeItemType = exports.ProjectType = exports.LocalAttorneyFeeTireType = exports.AnnuityManagementServiceType = exports.CopyrightRegistrationServiceType = exports.UtilityModelServiceType = exports.DesignPatentServiceType = exports.TrademarkServiceType = exports.InventionPatentServiceType = exports.FilingRouteType = void 0;
|
|
4
4
|
var FilingRouteType;
|
|
5
5
|
(function (FilingRouteType) {
|
|
6
6
|
FilingRouteType["DivisionalApply"] = "DivisionalApply";
|
|
@@ -24,6 +24,34 @@ var TrademarkServiceType;
|
|
|
24
24
|
TrademarkServiceType["Assignment"] = "Assignment";
|
|
25
25
|
TrademarkServiceType["OAReply"] = "OAReply";
|
|
26
26
|
})(TrademarkServiceType || (exports.TrademarkServiceType = TrademarkServiceType = {}));
|
|
27
|
+
var DesignPatentServiceType;
|
|
28
|
+
(function (DesignPatentServiceType) {
|
|
29
|
+
DesignPatentServiceType["NewApplication"] = "NewApplication";
|
|
30
|
+
DesignPatentServiceType["EvaluationReport"] = "EvaluationReport";
|
|
31
|
+
DesignPatentServiceType["Renewal"] = "Renewal";
|
|
32
|
+
DesignPatentServiceType["BiblioChange"] = "BiblioChange";
|
|
33
|
+
DesignPatentServiceType["Assignment"] = "Assignment";
|
|
34
|
+
})(DesignPatentServiceType || (exports.DesignPatentServiceType = DesignPatentServiceType = {}));
|
|
35
|
+
var UtilityModelServiceType;
|
|
36
|
+
(function (UtilityModelServiceType) {
|
|
37
|
+
UtilityModelServiceType["NewApplication"] = "NewApplication";
|
|
38
|
+
UtilityModelServiceType["EvaluationReport"] = "EvaluationReport";
|
|
39
|
+
UtilityModelServiceType["GrantFee"] = "GrantFee";
|
|
40
|
+
UtilityModelServiceType["BiblioChange"] = "BiblioChange";
|
|
41
|
+
UtilityModelServiceType["Assignment"] = "Assignment";
|
|
42
|
+
})(UtilityModelServiceType || (exports.UtilityModelServiceType = UtilityModelServiceType = {}));
|
|
43
|
+
var CopyrightRegistrationServiceType;
|
|
44
|
+
(function (CopyrightRegistrationServiceType) {
|
|
45
|
+
CopyrightRegistrationServiceType["SoftwareApp"] = "SoftwareApp";
|
|
46
|
+
CopyrightRegistrationServiceType["ArtDesignLogo"] = "ArtDesignLogo";
|
|
47
|
+
CopyrightRegistrationServiceType["LiteraryMedia"] = "LiteraryMedia";
|
|
48
|
+
})(CopyrightRegistrationServiceType || (exports.CopyrightRegistrationServiceType = CopyrightRegistrationServiceType = {}));
|
|
49
|
+
var AnnuityManagementServiceType;
|
|
50
|
+
(function (AnnuityManagementServiceType) {
|
|
51
|
+
AnnuityManagementServiceType["Invention"] = "Invention";
|
|
52
|
+
AnnuityManagementServiceType["UtilityModel"] = "UtilityModel";
|
|
53
|
+
AnnuityManagementServiceType["Design"] = "Design";
|
|
54
|
+
})(AnnuityManagementServiceType || (exports.AnnuityManagementServiceType = AnnuityManagementServiceType = {}));
|
|
27
55
|
var LocalAttorneyFeeTireType;
|
|
28
56
|
(function (LocalAttorneyFeeTireType) {
|
|
29
57
|
LocalAttorneyFeeTireType["DirectFiling"] = "DirectFiling";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interface.js","sourceRoot":"","sources":["../../src/tool/interface.ts"],"names":[],"mappings":";;;AA4BA,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,sDAAmC,CAAA;IACnC,wDAAqC,CAAA;IACrC,mDAAgC,CAAA;AAClC,CAAC,EAJW,eAAe,+BAAf,eAAe,QAI1B;AACD,IAAY,0BAOX;AAPD,WAAY,0BAA0B;IACpC,+DAAiC,CAAA;IACjC,yDAA2B,CAAA;IAC3B,uDAAyB,CAAA;IACzB,2DAA6B,CAAA;IAC7B,mDAAqB,CAAA;IACrB,yDAA2B,CAAA;AAC7B,CAAC,EAPW,0BAA0B,0CAA1B,0BAA0B,QAOrC;AACD,IAAY,oBAMX;AAND,WAAY,oBAAoB;IAC9B,yDAAiC,CAAA;IACjC,2CAAmB,CAAA;IACnB,+DAAuC,CAAA;IACvC,iDAAyB,CAAA;IACzB,2CAAmB,CAAA;AACrB,CAAC,EANW,oBAAoB,oCAApB,oBAAoB,QAM/B;AACD,IAAY,wBAIX;AAJD,WAAY,wBAAwB;IAClC,yDAA6B,CAAA;IAC7B,qDAAyB,CAAA;IACzB,+DAAmC,CAAA;AACrC,CAAC,EAJW,wBAAwB,wCAAxB,wBAAwB,QAInC;AACD,IAAY,WAOX;AAPD,WAAY,WAAW;IACrB,8DAA+C,CAAA;IAC/C,kDAAmC,CAAA;IACnC,4CAA6B,CAAA;IAC7B,4CAA6B,CAAA;IAC7B,sDAAuC,CAAA;IACvC,8DAA+C,CAAA;AACjD,CAAC,EAPW,WAAW,2BAAX,WAAW,QAOtB;AACD,IAAY,cAIX;AAJD,WAAY,cAAc;IACxB,+BAAa,CAAA;IACb,qCAAmB,CAAA;IACnB,uCAAqB,CAAA;AACvB,CAAC,EAJW,cAAc,8BAAd,cAAc,QAIzB;AACD,IAAY,qBAGX;AAHD,WAAY,qBAAqB;IAC7B,gDAAuB,CAAA;IACvB,oDAA2B,CAAA;AAC/B,CAAC,EAHW,qBAAqB,qCAArB,qBAAqB,QAGhC;AACD,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC7B,wDAAiC,CAAA;IACjC,8DAAuC,CAAA;AACzC,CAAC,EAHW,mBAAmB,mCAAnB,mBAAmB,QAG9B"}
|
|
1
|
+
{"version":3,"file":"interface.js","sourceRoot":"","sources":["../../src/tool/interface.ts"],"names":[],"mappings":";;;AA4BA,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,sDAAmC,CAAA;IACnC,wDAAqC,CAAA;IACrC,mDAAgC,CAAA;AAClC,CAAC,EAJW,eAAe,+BAAf,eAAe,QAI1B;AACD,IAAY,0BAOX;AAPD,WAAY,0BAA0B;IACpC,+DAAiC,CAAA;IACjC,yDAA2B,CAAA;IAC3B,uDAAyB,CAAA;IACzB,2DAA6B,CAAA;IAC7B,mDAAqB,CAAA;IACrB,yDAA2B,CAAA;AAC7B,CAAC,EAPW,0BAA0B,0CAA1B,0BAA0B,QAOrC;AACD,IAAY,oBAMX;AAND,WAAY,oBAAoB;IAC9B,yDAAiC,CAAA;IACjC,2CAAmB,CAAA;IACnB,+DAAuC,CAAA;IACvC,iDAAyB,CAAA;IACzB,2CAAmB,CAAA;AACrB,CAAC,EANW,oBAAoB,oCAApB,oBAAoB,QAM/B;AACD,IAAY,uBAMX;AAND,WAAY,uBAAuB;IACjC,4DAAiC,CAAA;IACjC,gEAAqC,CAAA;IACrC,8CAAmB,CAAA;IACnB,wDAA6B,CAAA;IAC7B,oDAAyB,CAAA;AAC3B,CAAC,EANW,uBAAuB,uCAAvB,uBAAuB,QAMlC;AACD,IAAY,uBAMX;AAND,WAAY,uBAAuB;IACjC,4DAAiC,CAAA;IACjC,gEAAqC,CAAA;IACrC,gDAAqB,CAAA;IACrB,wDAA6B,CAAA;IAC7B,oDAAyB,CAAA;AAC3B,CAAC,EANW,uBAAuB,uCAAvB,uBAAuB,QAMlC;AACD,IAAY,gCAIX;AAJD,WAAY,gCAAgC;IAC1C,+DAA2B,CAAA;IAC3B,mEAA+B,CAAA;IAC/B,mEAA+B,CAAA;AACjC,CAAC,EAJW,gCAAgC,gDAAhC,gCAAgC,QAI3C;AACD,IAAY,4BAIX;AAJD,WAAY,4BAA4B;IACtC,uDAAuB,CAAA;IACvB,6DAA6B,CAAA;IAC7B,iDAAiB,CAAA;AACnB,CAAC,EAJW,4BAA4B,4CAA5B,4BAA4B,QAIvC;AACD,IAAY,wBAIX;AAJD,WAAY,wBAAwB;IAClC,yDAA6B,CAAA;IAC7B,qDAAyB,CAAA;IACzB,+DAAmC,CAAA;AACrC,CAAC,EAJW,wBAAwB,wCAAxB,wBAAwB,QAInC;AACD,IAAY,WAOX;AAPD,WAAY,WAAW;IACrB,8DAA+C,CAAA;IAC/C,kDAAmC,CAAA;IACnC,4CAA6B,CAAA;IAC7B,4CAA6B,CAAA;IAC7B,sDAAuC,CAAA;IACvC,8DAA+C,CAAA;AACjD,CAAC,EAPW,WAAW,2BAAX,WAAW,QAOtB;AACD,IAAY,cAIX;AAJD,WAAY,cAAc;IACxB,+BAAa,CAAA;IACb,qCAAmB,CAAA;IACnB,uCAAqB,CAAA;AACvB,CAAC,EAJW,cAAc,8BAAd,cAAc,QAIzB;AACD,IAAY,qBAGX;AAHD,WAAY,qBAAqB;IAC7B,gDAAuB,CAAA;IACvB,oDAA2B,CAAA;AAC/B,CAAC,EAHW,qBAAqB,qCAArB,qBAAqB,QAGhC;AACD,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC7B,wDAAiC,CAAA;IACjC,8DAAuC,CAAA;AACzC,CAAC,EAHW,mBAAmB,mCAAnB,mBAAmB,QAG9B"}
|
package/build/tool/require.js
CHANGED