@seamapi/types 1.260.0 → 1.261.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/connect.cjs +12 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +85 -87
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +0 -5
- package/lib/seam/connect/models/action-attempts/encode-card.js +1 -1
- package/lib/seam/connect/models/action-attempts/encode-card.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/read-card.d.ts +0 -5
- package/lib/seam/connect/models/action-attempts/read-card.js +6 -6
- package/lib/seam/connect/models/action-attempts/read-card.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +44 -2
- package/lib/seam/connect/openapi.js +5 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +41 -80
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/encode-card.ts +1 -1
- package/src/lib/seam/connect/models/action-attempts/read-card.ts +6 -6
- package/src/lib/seam/connect/openapi.ts +5 -11
- package/src/lib/seam/connect/route-types.ts +41 -80
|
@@ -87,9 +87,7 @@ export interface Routes {
|
|
|
87
87
|
error: null;
|
|
88
88
|
action_type: 'READ_CARD';
|
|
89
89
|
result: {
|
|
90
|
-
/**
|
|
91
|
-
acs_credential_id: string | null;
|
|
92
|
-
/** A number or sting that physically identifies this card. */
|
|
90
|
+
/** A number or string that physically identifies this card. */
|
|
93
91
|
card_number: string | null;
|
|
94
92
|
};
|
|
95
93
|
} | {
|
|
@@ -118,7 +116,7 @@ export interface Routes {
|
|
|
118
116
|
result: {
|
|
119
117
|
/** Matching acs_credential currently encoded on this card. */
|
|
120
118
|
acs_credential_id: string | null;
|
|
121
|
-
/** A number or
|
|
119
|
+
/** A number or string that physically identifies this card. */
|
|
122
120
|
card_number: string | null;
|
|
123
121
|
};
|
|
124
122
|
} | {
|
|
@@ -693,9 +691,7 @@ export interface Routes {
|
|
|
693
691
|
error: null;
|
|
694
692
|
action_type: 'READ_CARD';
|
|
695
693
|
result: {
|
|
696
|
-
/**
|
|
697
|
-
acs_credential_id: string | null;
|
|
698
|
-
/** A number or sting that physically identifies this card. */
|
|
694
|
+
/** A number or string that physically identifies this card. */
|
|
699
695
|
card_number: string | null;
|
|
700
696
|
};
|
|
701
697
|
} | {
|
|
@@ -724,7 +720,7 @@ export interface Routes {
|
|
|
724
720
|
result: {
|
|
725
721
|
/** Matching acs_credential currently encoded on this card. */
|
|
726
722
|
acs_credential_id: string | null;
|
|
727
|
-
/** A number or
|
|
723
|
+
/** A number or string that physically identifies this card. */
|
|
728
724
|
card_number: string | null;
|
|
729
725
|
};
|
|
730
726
|
} | {
|
|
@@ -1456,9 +1452,7 @@ export interface Routes {
|
|
|
1456
1452
|
error: null;
|
|
1457
1453
|
action_type: 'READ_CARD';
|
|
1458
1454
|
result: {
|
|
1459
|
-
/**
|
|
1460
|
-
acs_credential_id: string | null;
|
|
1461
|
-
/** A number or sting that physically identifies this card. */
|
|
1455
|
+
/** A number or string that physically identifies this card. */
|
|
1462
1456
|
card_number: string | null;
|
|
1463
1457
|
};
|
|
1464
1458
|
} | {
|
|
@@ -1487,7 +1481,7 @@ export interface Routes {
|
|
|
1487
1481
|
result: {
|
|
1488
1482
|
/** Matching acs_credential currently encoded on this card. */
|
|
1489
1483
|
acs_credential_id: string | null;
|
|
1490
|
-
/** A number or
|
|
1484
|
+
/** A number or string that physically identifies this card. */
|
|
1491
1485
|
card_number: string | null;
|
|
1492
1486
|
};
|
|
1493
1487
|
} | {
|
|
@@ -2049,9 +2043,7 @@ export interface Routes {
|
|
|
2049
2043
|
error: null;
|
|
2050
2044
|
action_type: 'READ_CARD';
|
|
2051
2045
|
result: {
|
|
2052
|
-
/**
|
|
2053
|
-
acs_credential_id: string | null;
|
|
2054
|
-
/** A number or sting that physically identifies this card. */
|
|
2046
|
+
/** A number or string that physically identifies this card. */
|
|
2055
2047
|
card_number: string | null;
|
|
2056
2048
|
};
|
|
2057
2049
|
} | {
|
|
@@ -2080,7 +2072,7 @@ export interface Routes {
|
|
|
2080
2072
|
result: {
|
|
2081
2073
|
/** Matching acs_credential currently encoded on this card. */
|
|
2082
2074
|
acs_credential_id: string | null;
|
|
2083
|
-
/** A number or
|
|
2075
|
+
/** A number or string that physically identifies this card. */
|
|
2084
2076
|
card_number: string | null;
|
|
2085
2077
|
};
|
|
2086
2078
|
} | {
|
|
@@ -3368,9 +3360,7 @@ export interface Routes {
|
|
|
3368
3360
|
error: null;
|
|
3369
3361
|
action_type: 'READ_CARD';
|
|
3370
3362
|
result: {
|
|
3371
|
-
/**
|
|
3372
|
-
acs_credential_id: string | null;
|
|
3373
|
-
/** A number or sting that physically identifies this card. */
|
|
3363
|
+
/** A number or string that physically identifies this card. */
|
|
3374
3364
|
card_number: string | null;
|
|
3375
3365
|
};
|
|
3376
3366
|
} | {
|
|
@@ -3399,7 +3389,7 @@ export interface Routes {
|
|
|
3399
3389
|
result: {
|
|
3400
3390
|
/** Matching acs_credential currently encoded on this card. */
|
|
3401
3391
|
acs_credential_id: string | null;
|
|
3402
|
-
/** A number or
|
|
3392
|
+
/** A number or string that physically identifies this card. */
|
|
3403
3393
|
card_number: string | null;
|
|
3404
3394
|
};
|
|
3405
3395
|
} | {
|
|
@@ -4219,6 +4209,7 @@ export interface Routes {
|
|
|
4219
4209
|
acs_system_id: string;
|
|
4220
4210
|
device_name: string;
|
|
4221
4211
|
} | {
|
|
4212
|
+
acs_system_id: string;
|
|
4222
4213
|
device_id: string;
|
|
4223
4214
|
};
|
|
4224
4215
|
formData: {};
|
|
@@ -4285,9 +4276,7 @@ export interface Routes {
|
|
|
4285
4276
|
error: null;
|
|
4286
4277
|
action_type: 'READ_CARD';
|
|
4287
4278
|
result: {
|
|
4288
|
-
/**
|
|
4289
|
-
acs_credential_id: string | null;
|
|
4290
|
-
/** A number or sting that physically identifies this card. */
|
|
4279
|
+
/** A number or string that physically identifies this card. */
|
|
4291
4280
|
card_number: string | null;
|
|
4292
4281
|
};
|
|
4293
4282
|
} | {
|
|
@@ -4316,7 +4305,7 @@ export interface Routes {
|
|
|
4316
4305
|
result: {
|
|
4317
4306
|
/** Matching acs_credential currently encoded on this card. */
|
|
4318
4307
|
acs_credential_id: string | null;
|
|
4319
|
-
/** A number or
|
|
4308
|
+
/** A number or string that physically identifies this card. */
|
|
4320
4309
|
card_number: string | null;
|
|
4321
4310
|
};
|
|
4322
4311
|
} | {
|
|
@@ -5898,9 +5887,7 @@ export interface Routes {
|
|
|
5898
5887
|
error: null;
|
|
5899
5888
|
action_type: 'READ_CARD';
|
|
5900
5889
|
result: {
|
|
5901
|
-
/**
|
|
5902
|
-
acs_credential_id: string | null;
|
|
5903
|
-
/** A number or sting that physically identifies this card. */
|
|
5890
|
+
/** A number or string that physically identifies this card. */
|
|
5904
5891
|
card_number: string | null;
|
|
5905
5892
|
};
|
|
5906
5893
|
} | {
|
|
@@ -5929,7 +5916,7 @@ export interface Routes {
|
|
|
5929
5916
|
result: {
|
|
5930
5917
|
/** Matching acs_credential currently encoded on this card. */
|
|
5931
5918
|
acs_credential_id: string | null;
|
|
5932
|
-
/** A number or
|
|
5919
|
+
/** A number or string that physically identifies this card. */
|
|
5933
5920
|
card_number: string | null;
|
|
5934
5921
|
};
|
|
5935
5922
|
} | {
|
|
@@ -6353,9 +6340,7 @@ export interface Routes {
|
|
|
6353
6340
|
error: null;
|
|
6354
6341
|
action_type: 'READ_CARD';
|
|
6355
6342
|
result: {
|
|
6356
|
-
/**
|
|
6357
|
-
acs_credential_id: string | null;
|
|
6358
|
-
/** A number or sting that physically identifies this card. */
|
|
6343
|
+
/** A number or string that physically identifies this card. */
|
|
6359
6344
|
card_number: string | null;
|
|
6360
6345
|
};
|
|
6361
6346
|
} | {
|
|
@@ -6384,7 +6369,7 @@ export interface Routes {
|
|
|
6384
6369
|
result: {
|
|
6385
6370
|
/** Matching acs_credential currently encoded on this card. */
|
|
6386
6371
|
acs_credential_id: string | null;
|
|
6387
|
-
/** A number or
|
|
6372
|
+
/** A number or string that physically identifies this card. */
|
|
6388
6373
|
card_number: string | null;
|
|
6389
6374
|
};
|
|
6390
6375
|
} | {
|
|
@@ -10354,9 +10339,7 @@ export interface Routes {
|
|
|
10354
10339
|
error: null;
|
|
10355
10340
|
action_type: 'READ_CARD';
|
|
10356
10341
|
result: {
|
|
10357
|
-
/**
|
|
10358
|
-
acs_credential_id: string | null;
|
|
10359
|
-
/** A number or sting that physically identifies this card. */
|
|
10342
|
+
/** A number or string that physically identifies this card. */
|
|
10360
10343
|
card_number: string | null;
|
|
10361
10344
|
};
|
|
10362
10345
|
} | {
|
|
@@ -10385,7 +10368,7 @@ export interface Routes {
|
|
|
10385
10368
|
result: {
|
|
10386
10369
|
/** Matching acs_credential currently encoded on this card. */
|
|
10387
10370
|
acs_credential_id: string | null;
|
|
10388
|
-
/** A number or
|
|
10371
|
+
/** A number or string that physically identifies this card. */
|
|
10389
10372
|
card_number: string | null;
|
|
10390
10373
|
};
|
|
10391
10374
|
} | {
|
|
@@ -10810,9 +10793,7 @@ export interface Routes {
|
|
|
10810
10793
|
error: null;
|
|
10811
10794
|
action_type: 'READ_CARD';
|
|
10812
10795
|
result: {
|
|
10813
|
-
/**
|
|
10814
|
-
acs_credential_id: string | null;
|
|
10815
|
-
/** A number or sting that physically identifies this card. */
|
|
10796
|
+
/** A number or string that physically identifies this card. */
|
|
10816
10797
|
card_number: string | null;
|
|
10817
10798
|
};
|
|
10818
10799
|
} | {
|
|
@@ -10841,7 +10822,7 @@ export interface Routes {
|
|
|
10841
10822
|
result: {
|
|
10842
10823
|
/** Matching acs_credential currently encoded on this card. */
|
|
10843
10824
|
acs_credential_id: string | null;
|
|
10844
|
-
/** A number or
|
|
10825
|
+
/** A number or string that physically identifies this card. */
|
|
10845
10826
|
card_number: string | null;
|
|
10846
10827
|
};
|
|
10847
10828
|
} | {
|
|
@@ -12208,9 +12189,7 @@ export interface Routes {
|
|
|
12208
12189
|
error: null;
|
|
12209
12190
|
action_type: 'READ_CARD';
|
|
12210
12191
|
result: {
|
|
12211
|
-
/**
|
|
12212
|
-
acs_credential_id: string | null;
|
|
12213
|
-
/** A number or sting that physically identifies this card. */
|
|
12192
|
+
/** A number or string that physically identifies this card. */
|
|
12214
12193
|
card_number: string | null;
|
|
12215
12194
|
};
|
|
12216
12195
|
} | {
|
|
@@ -12239,7 +12218,7 @@ export interface Routes {
|
|
|
12239
12218
|
result: {
|
|
12240
12219
|
/** Matching acs_credential currently encoded on this card. */
|
|
12241
12220
|
acs_credential_id: string | null;
|
|
12242
|
-
/** A number or
|
|
12221
|
+
/** A number or string that physically identifies this card. */
|
|
12243
12222
|
card_number: string | null;
|
|
12244
12223
|
};
|
|
12245
12224
|
} | {
|
|
@@ -12674,9 +12653,7 @@ export interface Routes {
|
|
|
12674
12653
|
error: null;
|
|
12675
12654
|
action_type: 'READ_CARD';
|
|
12676
12655
|
result: {
|
|
12677
|
-
/**
|
|
12678
|
-
acs_credential_id: string | null;
|
|
12679
|
-
/** A number or sting that physically identifies this card. */
|
|
12656
|
+
/** A number or string that physically identifies this card. */
|
|
12680
12657
|
card_number: string | null;
|
|
12681
12658
|
};
|
|
12682
12659
|
} | {
|
|
@@ -12705,7 +12682,7 @@ export interface Routes {
|
|
|
12705
12682
|
result: {
|
|
12706
12683
|
/** Matching acs_credential currently encoded on this card. */
|
|
12707
12684
|
acs_credential_id: string | null;
|
|
12708
|
-
/** A number or
|
|
12685
|
+
/** A number or string that physically identifies this card. */
|
|
12709
12686
|
card_number: string | null;
|
|
12710
12687
|
};
|
|
12711
12688
|
} | {
|
|
@@ -13179,9 +13156,7 @@ export interface Routes {
|
|
|
13179
13156
|
error: null;
|
|
13180
13157
|
action_type: 'READ_CARD';
|
|
13181
13158
|
result: {
|
|
13182
|
-
/**
|
|
13183
|
-
acs_credential_id: string | null;
|
|
13184
|
-
/** A number or sting that physically identifies this card. */
|
|
13159
|
+
/** A number or string that physically identifies this card. */
|
|
13185
13160
|
card_number: string | null;
|
|
13186
13161
|
};
|
|
13187
13162
|
} | {
|
|
@@ -13210,7 +13185,7 @@ export interface Routes {
|
|
|
13210
13185
|
result: {
|
|
13211
13186
|
/** Matching acs_credential currently encoded on this card. */
|
|
13212
13187
|
acs_credential_id: string | null;
|
|
13213
|
-
/** A number or
|
|
13188
|
+
/** A number or string that physically identifies this card. */
|
|
13214
13189
|
card_number: string | null;
|
|
13215
13190
|
};
|
|
13216
13191
|
} | {
|
|
@@ -13817,9 +13792,7 @@ export interface Routes {
|
|
|
13817
13792
|
error: null;
|
|
13818
13793
|
action_type: 'READ_CARD';
|
|
13819
13794
|
result: {
|
|
13820
|
-
/**
|
|
13821
|
-
acs_credential_id: string | null;
|
|
13822
|
-
/** A number or sting that physically identifies this card. */
|
|
13795
|
+
/** A number or string that physically identifies this card. */
|
|
13823
13796
|
card_number: string | null;
|
|
13824
13797
|
};
|
|
13825
13798
|
} | {
|
|
@@ -13848,7 +13821,7 @@ export interface Routes {
|
|
|
13848
13821
|
result: {
|
|
13849
13822
|
/** Matching acs_credential currently encoded on this card. */
|
|
13850
13823
|
acs_credential_id: string | null;
|
|
13851
|
-
/** A number or
|
|
13824
|
+
/** A number or string that physically identifies this card. */
|
|
13852
13825
|
card_number: string | null;
|
|
13853
13826
|
};
|
|
13854
13827
|
} | {
|
|
@@ -14275,9 +14248,7 @@ export interface Routes {
|
|
|
14275
14248
|
error: null;
|
|
14276
14249
|
action_type: 'READ_CARD';
|
|
14277
14250
|
result: {
|
|
14278
|
-
/**
|
|
14279
|
-
acs_credential_id: string | null;
|
|
14280
|
-
/** A number or sting that physically identifies this card. */
|
|
14251
|
+
/** A number or string that physically identifies this card. */
|
|
14281
14252
|
card_number: string | null;
|
|
14282
14253
|
};
|
|
14283
14254
|
} | {
|
|
@@ -14306,7 +14277,7 @@ export interface Routes {
|
|
|
14306
14277
|
result: {
|
|
14307
14278
|
/** Matching acs_credential currently encoded on this card. */
|
|
14308
14279
|
acs_credential_id: string | null;
|
|
14309
|
-
/** A number or
|
|
14280
|
+
/** A number or string that physically identifies this card. */
|
|
14310
14281
|
card_number: string | null;
|
|
14311
14282
|
};
|
|
14312
14283
|
} | {
|
|
@@ -15217,9 +15188,7 @@ export interface Routes {
|
|
|
15217
15188
|
error: null;
|
|
15218
15189
|
action_type: 'READ_CARD';
|
|
15219
15190
|
result: {
|
|
15220
|
-
/**
|
|
15221
|
-
acs_credential_id: string | null;
|
|
15222
|
-
/** A number or sting that physically identifies this card. */
|
|
15191
|
+
/** A number or string that physically identifies this card. */
|
|
15223
15192
|
card_number: string | null;
|
|
15224
15193
|
};
|
|
15225
15194
|
} | {
|
|
@@ -15248,7 +15217,7 @@ export interface Routes {
|
|
|
15248
15217
|
result: {
|
|
15249
15218
|
/** Matching acs_credential currently encoded on this card. */
|
|
15250
15219
|
acs_credential_id: string | null;
|
|
15251
|
-
/** A number or
|
|
15220
|
+
/** A number or string that physically identifies this card. */
|
|
15252
15221
|
card_number: string | null;
|
|
15253
15222
|
};
|
|
15254
15223
|
} | {
|
|
@@ -15677,9 +15646,7 @@ export interface Routes {
|
|
|
15677
15646
|
error: null;
|
|
15678
15647
|
action_type: 'READ_CARD';
|
|
15679
15648
|
result: {
|
|
15680
|
-
/**
|
|
15681
|
-
acs_credential_id: string | null;
|
|
15682
|
-
/** A number or sting that physically identifies this card. */
|
|
15649
|
+
/** A number or string that physically identifies this card. */
|
|
15683
15650
|
card_number: string | null;
|
|
15684
15651
|
};
|
|
15685
15652
|
} | {
|
|
@@ -15708,7 +15675,7 @@ export interface Routes {
|
|
|
15708
15675
|
result: {
|
|
15709
15676
|
/** Matching acs_credential currently encoded on this card. */
|
|
15710
15677
|
acs_credential_id: string | null;
|
|
15711
|
-
/** A number or
|
|
15678
|
+
/** A number or string that physically identifies this card. */
|
|
15712
15679
|
card_number: string | null;
|
|
15713
15680
|
};
|
|
15714
15681
|
} | {
|
|
@@ -16597,9 +16564,7 @@ export interface Routes {
|
|
|
16597
16564
|
error: null;
|
|
16598
16565
|
action_type: 'READ_CARD';
|
|
16599
16566
|
result: {
|
|
16600
|
-
/**
|
|
16601
|
-
acs_credential_id: string | null;
|
|
16602
|
-
/** A number or sting that physically identifies this card. */
|
|
16567
|
+
/** A number or string that physically identifies this card. */
|
|
16603
16568
|
card_number: string | null;
|
|
16604
16569
|
};
|
|
16605
16570
|
} | {
|
|
@@ -16628,7 +16593,7 @@ export interface Routes {
|
|
|
16628
16593
|
result: {
|
|
16629
16594
|
/** Matching acs_credential currently encoded on this card. */
|
|
16630
16595
|
acs_credential_id: string | null;
|
|
16631
|
-
/** A number or
|
|
16596
|
+
/** A number or string that physically identifies this card. */
|
|
16632
16597
|
card_number: string | null;
|
|
16633
16598
|
};
|
|
16634
16599
|
} | {
|
|
@@ -17174,9 +17139,7 @@ export interface Routes {
|
|
|
17174
17139
|
error: null;
|
|
17175
17140
|
action_type: 'READ_CARD';
|
|
17176
17141
|
result: {
|
|
17177
|
-
/**
|
|
17178
|
-
acs_credential_id: string | null;
|
|
17179
|
-
/** A number or sting that physically identifies this card. */
|
|
17142
|
+
/** A number or string that physically identifies this card. */
|
|
17180
17143
|
card_number: string | null;
|
|
17181
17144
|
};
|
|
17182
17145
|
} | {
|
|
@@ -17205,7 +17168,7 @@ export interface Routes {
|
|
|
17205
17168
|
result: {
|
|
17206
17169
|
/** Matching acs_credential currently encoded on this card. */
|
|
17207
17170
|
acs_credential_id: string | null;
|
|
17208
|
-
/** A number or
|
|
17171
|
+
/** A number or string that physically identifies this card. */
|
|
17209
17172
|
card_number: string | null;
|
|
17210
17173
|
};
|
|
17211
17174
|
} | {
|
|
@@ -19099,9 +19062,7 @@ export interface Routes {
|
|
|
19099
19062
|
error: null;
|
|
19100
19063
|
action_type: 'READ_CARD';
|
|
19101
19064
|
result: {
|
|
19102
|
-
/**
|
|
19103
|
-
acs_credential_id: string | null;
|
|
19104
|
-
/** A number or sting that physically identifies this card. */
|
|
19065
|
+
/** A number or string that physically identifies this card. */
|
|
19105
19066
|
card_number: string | null;
|
|
19106
19067
|
};
|
|
19107
19068
|
} | {
|
|
@@ -19130,7 +19091,7 @@ export interface Routes {
|
|
|
19130
19091
|
result: {
|
|
19131
19092
|
/** Matching acs_credential currently encoded on this card. */
|
|
19132
19093
|
acs_credential_id: string | null;
|
|
19133
|
-
/** A number or
|
|
19094
|
+
/** A number or string that physically identifies this card. */
|
|
19134
19095
|
card_number: string | null;
|
|
19135
19096
|
};
|
|
19136
19097
|
} | {
|
package/package.json
CHANGED
|
@@ -22,7 +22,7 @@ const result = z.object({
|
|
|
22
22
|
card_number: z
|
|
23
23
|
.string()
|
|
24
24
|
.nullable()
|
|
25
|
-
.describe('A number or
|
|
25
|
+
.describe('A number or string that physically identifies this card.'),
|
|
26
26
|
// TODO visionline_metadata: visionline_credential_metadata,
|
|
27
27
|
})
|
|
28
28
|
|
|
@@ -14,15 +14,15 @@ const error = z.object({
|
|
|
14
14
|
})
|
|
15
15
|
|
|
16
16
|
const result = z.object({
|
|
17
|
-
acs_credential_id: z
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
17
|
+
// TODO acs_credential_id: z
|
|
18
|
+
// .string()
|
|
19
|
+
// .uuid()
|
|
20
|
+
// .nullable()
|
|
21
|
+
// .describe("Matching acs_credential currently encoded on this card."),
|
|
22
22
|
card_number: z
|
|
23
23
|
.string()
|
|
24
24
|
.nullable()
|
|
25
|
-
.describe('A number or
|
|
25
|
+
.describe('A number or string that physically identifies this card.'),
|
|
26
26
|
// TODO visionline_metadata: visionline_credential_metadata,
|
|
27
27
|
})
|
|
28
28
|
|
|
@@ -1250,21 +1250,14 @@ export default {
|
|
|
1250
1250
|
error: { nullable: true },
|
|
1251
1251
|
result: {
|
|
1252
1252
|
properties: {
|
|
1253
|
-
acs_credential_id: {
|
|
1254
|
-
description:
|
|
1255
|
-
'Matching acs_credential currently encoded on this card.',
|
|
1256
|
-
format: 'uuid',
|
|
1257
|
-
nullable: true,
|
|
1258
|
-
type: 'string',
|
|
1259
|
-
},
|
|
1260
1253
|
card_number: {
|
|
1261
1254
|
description:
|
|
1262
|
-
'A number or
|
|
1255
|
+
'A number or string that physically identifies this card.',
|
|
1263
1256
|
nullable: true,
|
|
1264
1257
|
type: 'string',
|
|
1265
1258
|
},
|
|
1266
1259
|
},
|
|
1267
|
-
required: ['
|
|
1260
|
+
required: ['card_number'],
|
|
1268
1261
|
type: 'object',
|
|
1269
1262
|
},
|
|
1270
1263
|
status: { enum: ['success'], type: 'string' },
|
|
@@ -1353,7 +1346,7 @@ export default {
|
|
|
1353
1346
|
},
|
|
1354
1347
|
card_number: {
|
|
1355
1348
|
description:
|
|
1356
|
-
'A number or
|
|
1349
|
+
'A number or string that physically identifies this card.',
|
|
1357
1350
|
nullable: true,
|
|
1358
1351
|
type: 'string',
|
|
1359
1352
|
},
|
|
@@ -7644,9 +7637,10 @@ export default {
|
|
|
7644
7637
|
},
|
|
7645
7638
|
{
|
|
7646
7639
|
properties: {
|
|
7640
|
+
acs_system_id: { format: 'uuid', type: 'string' },
|
|
7647
7641
|
device_id: { format: 'uuid', type: 'string' },
|
|
7648
7642
|
},
|
|
7649
|
-
required: ['device_id'],
|
|
7643
|
+
required: ['acs_system_id', 'device_id'],
|
|
7650
7644
|
type: 'object',
|
|
7651
7645
|
},
|
|
7652
7646
|
],
|