@checkdigit/eslint-plugin 7.18.0-PR.143-072f → 7.18.0-PR.143-518d
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-mjs/openapi/generate-schema.mjs +7 -1
- package/package.json +1 -1
- package/src/openapi/generate-schema.ts +6 -0
- package/src/services/interchange/v1/swagger.schema.deref.json +1 -75
- package/src/services/interchange/v1/swagger.schema.json +1 -51
- package/src/services/ledger/v1/swagger.schema.deref.json +49 -2610
- package/src/services/ledger/v1/swagger.schema.json +106 -878
- package/src/services/link/v1/swagger.schema.deref.json +3 -426
- package/src/services/link/v1/swagger.schema.json +3 -261
- package/src/services/message/v1/swagger.schema.deref.json +1669 -8447
- package/src/services/message/v1/swagger.schema.json +5 -531
- package/src/services/message/v2/swagger.schema.deref.json +5125 -27716
- package/src/services/message/v2/swagger.schema.json +5 -523
- package/src/services/paymentCard/v1/swagger.schema.deref.json +36 -1185
- package/src/services/paymentCard/v1/swagger.schema.json +5 -499
- package/src/services/paymentCard/v2/swagger.schema.deref.json +60 -1186
- package/src/services/paymentCard/v2/swagger.schema.json +5 -511
- package/src/services/person/v1/swagger.schema.deref.json +510 -2348
- package/src/services/person/v1/swagger.schema.json +4 -470
- package/src/services/teampayClientManagement/v1/swagger.schema.deref.json +155 -1254
- package/src/services/teampayClientManagement/v1/swagger.schema.json +3 -369
|
@@ -1,147 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"apis": {
|
|
3
|
-
"/teampay-client-management/v1/ping": {
|
|
4
|
-
"get": {
|
|
5
|
-
"request": {
|
|
6
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
7
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/PingGetRequestContext",
|
|
8
|
-
"type": "object",
|
|
9
|
-
"properties": {
|
|
10
|
-
"headers": {
|
|
11
|
-
"type": "object",
|
|
12
|
-
"additionalProperties": true
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"required": [],
|
|
16
|
-
"additionalProperties": false
|
|
17
|
-
},
|
|
18
|
-
"responses": {
|
|
19
|
-
"200": {
|
|
20
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
21
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/PingGetResponseOK",
|
|
22
|
-
"type": "object",
|
|
23
|
-
"properties": {
|
|
24
|
-
"headers": {
|
|
25
|
-
"type": "object",
|
|
26
|
-
"additionalProperties": true
|
|
27
|
-
},
|
|
28
|
-
"body": {
|
|
29
|
-
"$ref": "/teampay-client-management/v1/schemas/definitions/Ping"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
"required": ["body"],
|
|
33
|
-
"additionalProperties": false
|
|
34
|
-
},
|
|
35
|
-
"default": {
|
|
36
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
37
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/PingGetResponseDefault",
|
|
38
|
-
"type": "object",
|
|
39
|
-
"properties": {
|
|
40
|
-
"headers": {
|
|
41
|
-
"type": "object",
|
|
42
|
-
"additionalProperties": true
|
|
43
|
-
},
|
|
44
|
-
"body": {
|
|
45
|
-
"$ref": "/teampay-client-management/v1/schemas/definitions/Error"
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
"required": ["body"],
|
|
49
|
-
"additionalProperties": false
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
},
|
|
3
|
+
"/teampay-client-management/v1/ping": {},
|
|
54
4
|
"/teampay-client-management/v1/client/:clientId": {
|
|
55
|
-
"get": {
|
|
56
|
-
"request": {
|
|
57
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
58
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/ClientGetRequestContext",
|
|
59
|
-
"type": "object",
|
|
60
|
-
"properties": {
|
|
61
|
-
"params": {
|
|
62
|
-
"type": "object",
|
|
63
|
-
"additionalProperties": false,
|
|
64
|
-
"properties": {
|
|
65
|
-
"at": {
|
|
66
|
-
"type": "string",
|
|
67
|
-
"format": "date-time"
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
"required": ["at"]
|
|
71
|
-
},
|
|
72
|
-
"headers": {
|
|
73
|
-
"type": "object",
|
|
74
|
-
"additionalProperties": true
|
|
75
|
-
}
|
|
76
|
-
},
|
|
77
|
-
"required": ["params", "query"],
|
|
78
|
-
"additionalProperties": false
|
|
79
|
-
},
|
|
80
|
-
"responses": {
|
|
81
|
-
"200": {
|
|
82
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
83
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/ClientGetResponseOK",
|
|
84
|
-
"type": "object",
|
|
85
|
-
"properties": {
|
|
86
|
-
"headers": {
|
|
87
|
-
"type": "object",
|
|
88
|
-
"properties": {
|
|
89
|
-
"last-modified": {
|
|
90
|
-
"type": "string",
|
|
91
|
-
"format": "date-time"
|
|
92
|
-
},
|
|
93
|
-
"created-on": {
|
|
94
|
-
"type": "string",
|
|
95
|
-
"format": "date-time"
|
|
96
|
-
},
|
|
97
|
-
"updated-on": {
|
|
98
|
-
"type": "string",
|
|
99
|
-
"format": "date-time"
|
|
100
|
-
},
|
|
101
|
-
"etag": {
|
|
102
|
-
"type": "string"
|
|
103
|
-
}
|
|
104
|
-
},
|
|
105
|
-
"required": ["last-modified", "created-on", "updated-on", "etag"]
|
|
106
|
-
},
|
|
107
|
-
"body": {
|
|
108
|
-
"$ref": "/teampay-client-management/v1/schemas/definitions/Client"
|
|
109
|
-
}
|
|
110
|
-
},
|
|
111
|
-
"required": ["headers", "body"],
|
|
112
|
-
"additionalProperties": false
|
|
113
|
-
},
|
|
114
|
-
"404": {
|
|
115
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
116
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/ClientGetResponseNotFound",
|
|
117
|
-
"type": "object",
|
|
118
|
-
"properties": {
|
|
119
|
-
"headers": {
|
|
120
|
-
"type": "object",
|
|
121
|
-
"additionalProperties": true
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
"required": [],
|
|
125
|
-
"additionalProperties": false
|
|
126
|
-
},
|
|
127
|
-
"default": {
|
|
128
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
129
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/ClientGetResponseDefault",
|
|
130
|
-
"type": "object",
|
|
131
|
-
"properties": {
|
|
132
|
-
"headers": {
|
|
133
|
-
"type": "object",
|
|
134
|
-
"additionalProperties": true
|
|
135
|
-
},
|
|
136
|
-
"body": {
|
|
137
|
-
"$ref": "/teampay-client-management/v1/schemas/definitions/Error"
|
|
138
|
-
}
|
|
139
|
-
},
|
|
140
|
-
"required": ["body"],
|
|
141
|
-
"additionalProperties": false
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
},
|
|
145
5
|
"put": {
|
|
146
6
|
"request": {
|
|
147
7
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
@@ -253,169 +113,8 @@
|
|
|
253
113
|
}
|
|
254
114
|
}
|
|
255
115
|
},
|
|
256
|
-
"/teampay-client-management/v1/client/:clientId/balance": {
|
|
257
|
-
"get": {
|
|
258
|
-
"request": {
|
|
259
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
260
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/ClientBalanceGetRequestContext",
|
|
261
|
-
"type": "object",
|
|
262
|
-
"properties": {
|
|
263
|
-
"params": {
|
|
264
|
-
"type": "object",
|
|
265
|
-
"additionalProperties": false,
|
|
266
|
-
"properties": {
|
|
267
|
-
"at": {
|
|
268
|
-
"type": "string",
|
|
269
|
-
"format": "date-time"
|
|
270
|
-
}
|
|
271
|
-
},
|
|
272
|
-
"required": ["at"]
|
|
273
|
-
},
|
|
274
|
-
"headers": {
|
|
275
|
-
"type": "object",
|
|
276
|
-
"additionalProperties": true
|
|
277
|
-
}
|
|
278
|
-
},
|
|
279
|
-
"required": ["params", "query"],
|
|
280
|
-
"additionalProperties": false
|
|
281
|
-
},
|
|
282
|
-
"responses": {
|
|
283
|
-
"200": {
|
|
284
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
285
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/ClientBalanceGetResponseOK",
|
|
286
|
-
"type": "object",
|
|
287
|
-
"properties": {
|
|
288
|
-
"headers": {
|
|
289
|
-
"type": "object",
|
|
290
|
-
"additionalProperties": true
|
|
291
|
-
},
|
|
292
|
-
"body": {
|
|
293
|
-
"$ref": "/teampay-client-management/v1/schemas/definitions/ClientBalance"
|
|
294
|
-
}
|
|
295
|
-
},
|
|
296
|
-
"required": ["body"],
|
|
297
|
-
"additionalProperties": false
|
|
298
|
-
},
|
|
299
|
-
"404": {
|
|
300
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
301
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/ClientBalanceGetResponseNotFound",
|
|
302
|
-
"type": "object",
|
|
303
|
-
"properties": {
|
|
304
|
-
"headers": {
|
|
305
|
-
"type": "object",
|
|
306
|
-
"additionalProperties": true
|
|
307
|
-
}
|
|
308
|
-
},
|
|
309
|
-
"required": [],
|
|
310
|
-
"additionalProperties": false
|
|
311
|
-
},
|
|
312
|
-
"default": {
|
|
313
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
314
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/ClientBalanceGetResponseDefault",
|
|
315
|
-
"type": "object",
|
|
316
|
-
"properties": {
|
|
317
|
-
"headers": {
|
|
318
|
-
"type": "object",
|
|
319
|
-
"additionalProperties": true
|
|
320
|
-
},
|
|
321
|
-
"body": {
|
|
322
|
-
"$ref": "/teampay-client-management/v1/schemas/definitions/Error"
|
|
323
|
-
}
|
|
324
|
-
},
|
|
325
|
-
"required": ["body"],
|
|
326
|
-
"additionalProperties": false
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
},
|
|
116
|
+
"/teampay-client-management/v1/client/:clientId/balance": {},
|
|
331
117
|
"/teampay-client-management/v1/ach-payment-source/:achPaymentSourceId": {
|
|
332
|
-
"get": {
|
|
333
|
-
"request": {
|
|
334
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
335
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/AchPaymentSourceGetRequestContext",
|
|
336
|
-
"type": "object",
|
|
337
|
-
"properties": {
|
|
338
|
-
"params": {
|
|
339
|
-
"type": "object",
|
|
340
|
-
"additionalProperties": false,
|
|
341
|
-
"properties": {
|
|
342
|
-
"at": {
|
|
343
|
-
"type": "string",
|
|
344
|
-
"format": "date-time"
|
|
345
|
-
}
|
|
346
|
-
},
|
|
347
|
-
"required": ["at"]
|
|
348
|
-
},
|
|
349
|
-
"headers": {
|
|
350
|
-
"type": "object",
|
|
351
|
-
"additionalProperties": true
|
|
352
|
-
}
|
|
353
|
-
},
|
|
354
|
-
"required": ["params", "query"],
|
|
355
|
-
"additionalProperties": false
|
|
356
|
-
},
|
|
357
|
-
"responses": {
|
|
358
|
-
"200": {
|
|
359
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
360
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/AchPaymentSourceGetResponseOK",
|
|
361
|
-
"type": "object",
|
|
362
|
-
"properties": {
|
|
363
|
-
"headers": {
|
|
364
|
-
"type": "object",
|
|
365
|
-
"properties": {
|
|
366
|
-
"last-modified": {
|
|
367
|
-
"type": "string",
|
|
368
|
-
"format": "date-time"
|
|
369
|
-
},
|
|
370
|
-
"created-on": {
|
|
371
|
-
"type": "string",
|
|
372
|
-
"format": "date-time"
|
|
373
|
-
},
|
|
374
|
-
"updated-on": {
|
|
375
|
-
"type": "string",
|
|
376
|
-
"format": "date-time"
|
|
377
|
-
}
|
|
378
|
-
},
|
|
379
|
-
"required": ["last-modified", "created-on", "updated-on"]
|
|
380
|
-
},
|
|
381
|
-
"body": {
|
|
382
|
-
"$ref": "/teampay-client-management/v1/schemas/definitions/ClientAchPaymentSource"
|
|
383
|
-
}
|
|
384
|
-
},
|
|
385
|
-
"required": ["headers", "body"],
|
|
386
|
-
"additionalProperties": false
|
|
387
|
-
},
|
|
388
|
-
"404": {
|
|
389
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
390
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/AchPaymentSourceGetResponseNotFound",
|
|
391
|
-
"type": "object",
|
|
392
|
-
"properties": {
|
|
393
|
-
"headers": {
|
|
394
|
-
"type": "object",
|
|
395
|
-
"additionalProperties": true
|
|
396
|
-
}
|
|
397
|
-
},
|
|
398
|
-
"required": [],
|
|
399
|
-
"additionalProperties": false
|
|
400
|
-
},
|
|
401
|
-
"default": {
|
|
402
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
403
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/AchPaymentSourceGetResponseDefault",
|
|
404
|
-
"type": "object",
|
|
405
|
-
"properties": {
|
|
406
|
-
"headers": {
|
|
407
|
-
"type": "object",
|
|
408
|
-
"additionalProperties": true
|
|
409
|
-
},
|
|
410
|
-
"body": {
|
|
411
|
-
"$ref": "/teampay-client-management/v1/schemas/definitions/Error"
|
|
412
|
-
}
|
|
413
|
-
},
|
|
414
|
-
"required": ["body"],
|
|
415
|
-
"additionalProperties": false
|
|
416
|
-
}
|
|
417
|
-
}
|
|
418
|
-
},
|
|
419
118
|
"put": {
|
|
420
119
|
"request": {
|
|
421
120
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
@@ -506,72 +205,7 @@
|
|
|
506
205
|
}
|
|
507
206
|
}
|
|
508
207
|
},
|
|
509
|
-
"/teampay-client-management/v1/client/:clientId/ach-payment-sources": {
|
|
510
|
-
"get": {
|
|
511
|
-
"request": {
|
|
512
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
513
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/ClientAchPaymentSourcesGetRequestContext",
|
|
514
|
-
"type": "object",
|
|
515
|
-
"properties": {
|
|
516
|
-
"params": {
|
|
517
|
-
"type": "object",
|
|
518
|
-
"additionalProperties": false,
|
|
519
|
-
"properties": {
|
|
520
|
-
"at": {
|
|
521
|
-
"type": "string",
|
|
522
|
-
"format": "date-time"
|
|
523
|
-
}
|
|
524
|
-
},
|
|
525
|
-
"required": ["at"]
|
|
526
|
-
},
|
|
527
|
-
"headers": {
|
|
528
|
-
"type": "object",
|
|
529
|
-
"additionalProperties": true
|
|
530
|
-
}
|
|
531
|
-
},
|
|
532
|
-
"required": ["params", "query"],
|
|
533
|
-
"additionalProperties": false
|
|
534
|
-
},
|
|
535
|
-
"responses": {
|
|
536
|
-
"200": {
|
|
537
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
538
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/ClientAchPaymentSourcesGetResponseOK",
|
|
539
|
-
"type": "object",
|
|
540
|
-
"properties": {
|
|
541
|
-
"headers": {
|
|
542
|
-
"type": "object",
|
|
543
|
-
"additionalProperties": true
|
|
544
|
-
},
|
|
545
|
-
"body": {
|
|
546
|
-
"type": "array",
|
|
547
|
-
"description": "List of client ACH payment sources",
|
|
548
|
-
"items": {
|
|
549
|
-
"$ref": "/teampay-client-management/v1/schemas/definitions/ClientAchPaymentSource"
|
|
550
|
-
}
|
|
551
|
-
}
|
|
552
|
-
},
|
|
553
|
-
"required": ["body"],
|
|
554
|
-
"additionalProperties": false
|
|
555
|
-
},
|
|
556
|
-
"default": {
|
|
557
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
558
|
-
"$id": "https://eslint-plugin.checkdigit/teampay-client-management/v1/schemas/api/ClientAchPaymentSourcesGetResponseDefault",
|
|
559
|
-
"type": "object",
|
|
560
|
-
"properties": {
|
|
561
|
-
"headers": {
|
|
562
|
-
"type": "object",
|
|
563
|
-
"additionalProperties": true
|
|
564
|
-
},
|
|
565
|
-
"body": {
|
|
566
|
-
"$ref": "/teampay-client-management/v1/schemas/definitions/Error"
|
|
567
|
-
}
|
|
568
|
-
},
|
|
569
|
-
"required": ["body"],
|
|
570
|
-
"additionalProperties": false
|
|
571
|
-
}
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
},
|
|
208
|
+
"/teampay-client-management/v1/client/:clientId/ach-payment-sources": {},
|
|
575
209
|
"/teampay-client-management/v1/request/:paymentId": {
|
|
576
210
|
"put": {
|
|
577
211
|
"request": {
|