@thirstie/thirstieservices 0.1.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/CHANGELOG.md +38 -0
- package/README.md +41 -0
- package/dist/bundle.cjs +2851 -0
- package/dist/bundle.iife.js +1 -0
- package/dist/bundle.mjs +2848 -0
- package/package.json +37 -0
- package/rollup.config.mjs +28 -0
- package/src/geoservice/index.js +232 -0
- package/src/index.js +7 -0
- package/src/thirstieapi/index.js +331 -0
- package/src/thirstieapi/utils/apirequest.js +34 -0
- package/tests/env.json.tpl +5 -0
- package/tests/fixtures/catalog.json +757 -0
- package/tests/fixtures/catalog_productline_offerings.json +689 -0
- package/tests/fixtures/google_autocomplete_response.json +281 -0
- package/tests/fixtures/google_autocomplete_response_withzip.json +75 -0
- package/tests/fixtures/google_placeid_details.json +104 -0
- package/tests/fixtures/guest_user.json +20 -0
- package/tests/fixtures/session_anonymous.json +8 -0
- package/tests/fixtures/user_addressbook.json +22 -0
- package/tests/fixtures/user_guest.json +20 -0
- package/tests/fixtures/user_loggedin.json +23 -0
- package/tests/fixtures/user_wallet.json +194 -0
- package/tests/functional/apirequest.func.test.js +46 -0
- package/tests/functional/geoservice.func.test.js +53 -0
- package/tests/integration/thirstieapi.int.test.js +89 -0
- package/tests/unit/geoservice.unit.test.js +367 -0
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
{
|
|
2
|
+
"request": "201 West 89",
|
|
3
|
+
"predictions": [
|
|
4
|
+
{
|
|
5
|
+
"description": "201 West 89th Street, New York, NY, USA",
|
|
6
|
+
"matched_substrings": [
|
|
7
|
+
{
|
|
8
|
+
"length": 3,
|
|
9
|
+
"offset": 0
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"length": 7,
|
|
13
|
+
"offset": 4
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"place_id": "ChIJBQajC4NYwokRGOChEKhLPQU",
|
|
17
|
+
"reference": "ChIJBQajC4NYwokRGOChEKhLPQU",
|
|
18
|
+
"structured_formatting": {
|
|
19
|
+
"main_text": "201 West 89th Street",
|
|
20
|
+
"main_text_matched_substrings": [
|
|
21
|
+
{
|
|
22
|
+
"length": 3,
|
|
23
|
+
"offset": 0
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"length": 7,
|
|
27
|
+
"offset": 4
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"secondary_text": "New York, NY, USA"
|
|
31
|
+
},
|
|
32
|
+
"terms": [
|
|
33
|
+
{
|
|
34
|
+
"offset": 0,
|
|
35
|
+
"value": "201"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"offset": 4,
|
|
39
|
+
"value": "West 89th Street"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"offset": 22,
|
|
43
|
+
"value": "New York"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"offset": 32,
|
|
47
|
+
"value": "NY"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"offset": 36,
|
|
51
|
+
"value": "USA"
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"types": [
|
|
55
|
+
"street_address",
|
|
56
|
+
"geocode"
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"description": "201 East 89th Street, New York, NY, USA",
|
|
61
|
+
"matched_substrings": [
|
|
62
|
+
{
|
|
63
|
+
"length": 3,
|
|
64
|
+
"offset": 0
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"length": 16,
|
|
68
|
+
"offset": 4
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"place_id": "ChIJf3qKyaRYwokRhrPB-ewynuc",
|
|
72
|
+
"reference": "ChIJf3qKyaRYwokRhrPB-ewynuc",
|
|
73
|
+
"structured_formatting": {
|
|
74
|
+
"main_text": "201 East 89th Street",
|
|
75
|
+
"main_text_matched_substrings": [
|
|
76
|
+
{
|
|
77
|
+
"length": 3,
|
|
78
|
+
"offset": 0
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"length": 16,
|
|
82
|
+
"offset": 4
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"secondary_text": "New York, NY, USA"
|
|
86
|
+
},
|
|
87
|
+
"terms": [
|
|
88
|
+
{
|
|
89
|
+
"offset": 0,
|
|
90
|
+
"value": "201"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"offset": 4,
|
|
94
|
+
"value": "East 89th Street"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"offset": 22,
|
|
98
|
+
"value": "New York"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"offset": 32,
|
|
102
|
+
"value": "NY"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"offset": 36,
|
|
106
|
+
"value": "USA"
|
|
107
|
+
}
|
|
108
|
+
],
|
|
109
|
+
"types": [
|
|
110
|
+
"street_address",
|
|
111
|
+
"geocode"
|
|
112
|
+
]
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"description": "201 West 89th Avenue, Merrillville, IN, USA",
|
|
116
|
+
"matched_substrings": [
|
|
117
|
+
{
|
|
118
|
+
"length": 3,
|
|
119
|
+
"offset": 0
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"length": 7,
|
|
123
|
+
"offset": 4
|
|
124
|
+
}
|
|
125
|
+
],
|
|
126
|
+
"place_id": "ChIJq49PSPzuEYgRqh8WtpI83Ao",
|
|
127
|
+
"reference": "ChIJq49PSPzuEYgRqh8WtpI83Ao",
|
|
128
|
+
"structured_formatting": {
|
|
129
|
+
"main_text": "201 West 89th Avenue",
|
|
130
|
+
"main_text_matched_substrings": [
|
|
131
|
+
{
|
|
132
|
+
"length": 3,
|
|
133
|
+
"offset": 0
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"length": 7,
|
|
137
|
+
"offset": 4
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"secondary_text": "Merrillville, IN, USA"
|
|
141
|
+
},
|
|
142
|
+
"terms": [
|
|
143
|
+
{
|
|
144
|
+
"offset": 0,
|
|
145
|
+
"value": "201"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"offset": 4,
|
|
149
|
+
"value": "West 89th Avenue"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"offset": 22,
|
|
153
|
+
"value": "Merrillville"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"offset": 36,
|
|
157
|
+
"value": "IN"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"offset": 40,
|
|
161
|
+
"value": "USA"
|
|
162
|
+
}
|
|
163
|
+
],
|
|
164
|
+
"types": [
|
|
165
|
+
"premise",
|
|
166
|
+
"geocode"
|
|
167
|
+
]
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"description": "201 West 89th Street, Kansas City, MO, USA",
|
|
171
|
+
"matched_substrings": [
|
|
172
|
+
{
|
|
173
|
+
"length": 3,
|
|
174
|
+
"offset": 0
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"length": 7,
|
|
178
|
+
"offset": 4
|
|
179
|
+
}
|
|
180
|
+
],
|
|
181
|
+
"place_id": "ChIJYbGRtcTowIcRooXJGIsQvCc",
|
|
182
|
+
"reference": "ChIJYbGRtcTowIcRooXJGIsQvCc",
|
|
183
|
+
"structured_formatting": {
|
|
184
|
+
"main_text": "201 West 89th Street",
|
|
185
|
+
"main_text_matched_substrings": [
|
|
186
|
+
{
|
|
187
|
+
"length": 3,
|
|
188
|
+
"offset": 0
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"length": 7,
|
|
192
|
+
"offset": 4
|
|
193
|
+
}
|
|
194
|
+
],
|
|
195
|
+
"secondary_text": "Kansas City, MO, USA"
|
|
196
|
+
},
|
|
197
|
+
"terms": [
|
|
198
|
+
{
|
|
199
|
+
"offset": 0,
|
|
200
|
+
"value": "201"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"offset": 4,
|
|
204
|
+
"value": "West 89th Street"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"offset": 22,
|
|
208
|
+
"value": "Kansas City"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"offset": 35,
|
|
212
|
+
"value": "MO"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"offset": 39,
|
|
216
|
+
"value": "USA"
|
|
217
|
+
}
|
|
218
|
+
],
|
|
219
|
+
"types": [
|
|
220
|
+
"premise",
|
|
221
|
+
"geocode"
|
|
222
|
+
]
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"description": "201 West 89th Street, Los Angeles, CA, USA",
|
|
226
|
+
"matched_substrings": [
|
|
227
|
+
{
|
|
228
|
+
"length": 3,
|
|
229
|
+
"offset": 0
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"length": 7,
|
|
233
|
+
"offset": 4
|
|
234
|
+
}
|
|
235
|
+
],
|
|
236
|
+
"place_id": "ChIJN-O9zOrJwoAR6xPx-sVM_aA",
|
|
237
|
+
"reference": "ChIJN-O9zOrJwoAR6xPx-sVM_aA",
|
|
238
|
+
"structured_formatting": {
|
|
239
|
+
"main_text": "201 West 89th Street",
|
|
240
|
+
"main_text_matched_substrings": [
|
|
241
|
+
{
|
|
242
|
+
"length": 3,
|
|
243
|
+
"offset": 0
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"length": 7,
|
|
247
|
+
"offset": 4
|
|
248
|
+
}
|
|
249
|
+
],
|
|
250
|
+
"secondary_text": "Los Angeles, CA, USA"
|
|
251
|
+
},
|
|
252
|
+
"terms": [
|
|
253
|
+
{
|
|
254
|
+
"offset": 0,
|
|
255
|
+
"value": "201"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"offset": 4,
|
|
259
|
+
"value": "West 89th Street"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"offset": 22,
|
|
263
|
+
"value": "Los Angeles"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"offset": 35,
|
|
267
|
+
"value": "CA"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"offset": 39,
|
|
271
|
+
"value": "USA"
|
|
272
|
+
}
|
|
273
|
+
],
|
|
274
|
+
"types": [
|
|
275
|
+
"premise",
|
|
276
|
+
"geocode"
|
|
277
|
+
]
|
|
278
|
+
}
|
|
279
|
+
],
|
|
280
|
+
"status": "OK"
|
|
281
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"request": "201 West 89 10024",
|
|
3
|
+
"predictions": [
|
|
4
|
+
{
|
|
5
|
+
"description": "201 West 89th Street, New York, NY 10024, USA",
|
|
6
|
+
"matched_substrings": [
|
|
7
|
+
{
|
|
8
|
+
"length": 3,
|
|
9
|
+
"offset": 0
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"length": 7,
|
|
13
|
+
"offset": 4
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"length": 5,
|
|
17
|
+
"offset": 35
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"place_id": "ChIJBQajC4NYwokRGOChEKhLPQU",
|
|
21
|
+
"reference": "ChIJBQajC4NYwokRGOChEKhLPQU",
|
|
22
|
+
"structured_formatting": {
|
|
23
|
+
"main_text": "201 West 89th Street",
|
|
24
|
+
"main_text_matched_substrings": [
|
|
25
|
+
{
|
|
26
|
+
"length": 3,
|
|
27
|
+
"offset": 0
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"length": 7,
|
|
31
|
+
"offset": 4
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"secondary_text": "New York, NY 10024, USA",
|
|
35
|
+
"secondary_text_matched_substrings": [
|
|
36
|
+
{
|
|
37
|
+
"length": 5,
|
|
38
|
+
"offset": 13
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
"terms": [
|
|
43
|
+
{
|
|
44
|
+
"offset": 0,
|
|
45
|
+
"value": "201"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"offset": 4,
|
|
49
|
+
"value": "West 89th Street"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"offset": 22,
|
|
53
|
+
"value": "New York"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"offset": 32,
|
|
57
|
+
"value": "NY"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"offset": 35,
|
|
61
|
+
"value": "10024"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"offset": 42,
|
|
65
|
+
"value": "USA"
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
"types": [
|
|
69
|
+
"street_address",
|
|
70
|
+
"geocode"
|
|
71
|
+
]
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"status": "OK"
|
|
75
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"html_attributions": [],
|
|
3
|
+
"result": {
|
|
4
|
+
"address_components": [
|
|
5
|
+
{
|
|
6
|
+
"long_name": "201",
|
|
7
|
+
"short_name": "201",
|
|
8
|
+
"types": [
|
|
9
|
+
"street_number"
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"long_name": "West 89th Street",
|
|
14
|
+
"short_name": "W 89th St",
|
|
15
|
+
"types": [
|
|
16
|
+
"route"
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"long_name": "Manhattan",
|
|
21
|
+
"short_name": "Manhattan",
|
|
22
|
+
"types": [
|
|
23
|
+
"sublocality_level_1",
|
|
24
|
+
"sublocality",
|
|
25
|
+
"political"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"long_name": "New York",
|
|
30
|
+
"short_name": "New York",
|
|
31
|
+
"types": [
|
|
32
|
+
"locality",
|
|
33
|
+
"political"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"long_name": "New York County",
|
|
38
|
+
"short_name": "New York County",
|
|
39
|
+
"types": [
|
|
40
|
+
"administrative_area_level_2",
|
|
41
|
+
"political"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"long_name": "New York",
|
|
46
|
+
"short_name": "NY",
|
|
47
|
+
"types": [
|
|
48
|
+
"administrative_area_level_1",
|
|
49
|
+
"political"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"long_name": "United States",
|
|
54
|
+
"short_name": "US",
|
|
55
|
+
"types": [
|
|
56
|
+
"country",
|
|
57
|
+
"political"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"long_name": "10024",
|
|
62
|
+
"short_name": "10024",
|
|
63
|
+
"types": [
|
|
64
|
+
"postal_code"
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
"adr_address": "<span class=\"street-address\">201 W 89th St</span>, <span class=\"locality\">New York</span>, <span class=\"region\">NY</span> <span class=\"postal-code\">10024</span>, <span class=\"country-name\">USA</span>",
|
|
69
|
+
"formatted_address": "201 W 89th St, New York, NY 10024, USA",
|
|
70
|
+
"geometry": {
|
|
71
|
+
"location": {
|
|
72
|
+
"lat": 40.789852,
|
|
73
|
+
"lng": -73.97391330000001
|
|
74
|
+
},
|
|
75
|
+
"viewport": {
|
|
76
|
+
"northeast": {
|
|
77
|
+
"lat": 40.7911613302915,
|
|
78
|
+
"lng": -73.9725932697085
|
|
79
|
+
},
|
|
80
|
+
"southwest": {
|
|
81
|
+
"lat": 40.7884633697085,
|
|
82
|
+
"lng": -73.9752912302915
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/geocode-71.png",
|
|
87
|
+
"icon_background_color": "#7B9EB0",
|
|
88
|
+
"icon_mask_base_uri": "https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet",
|
|
89
|
+
"name": "201 W 89th St",
|
|
90
|
+
"place_id": "ChIJBQajC4NYwokRGOChEKhLPQU",
|
|
91
|
+
"plus_code": {
|
|
92
|
+
"compound_code": "Q2QG+WC New York, NY, USA",
|
|
93
|
+
"global_code": "87G8Q2QG+WC"
|
|
94
|
+
},
|
|
95
|
+
"reference": "ChIJBQajC4NYwokRGOChEKhLPQU",
|
|
96
|
+
"types": [
|
|
97
|
+
"street_address"
|
|
98
|
+
],
|
|
99
|
+
"url": "https://maps.google.com/?q=201+W+89th+St,+New+York,+NY+10024,+USA&ftid=0x89c258830ba30605:0x53d4ba810a1e018",
|
|
100
|
+
"utc_offset": -240,
|
|
101
|
+
"vicinity": "Manhattan"
|
|
102
|
+
},
|
|
103
|
+
"status": "OK"
|
|
104
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"application_name": "apostrophe",
|
|
3
|
+
"session_uuid": "eJkjsss73yHugT3bfYYny",
|
|
4
|
+
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiIsImtpZCI6ImVKa2pzc3M3M3lIdWdUM2JmWVlueSJ9.eyJzdWIiOm51bGwsImV4cCI6MTcxNzY5ODQ0MCwibG9uZ19saXZlIjowLCJjdXN0b21fc2Vzc2lvbiI6MH0.PFceWlbfSANjfqcB4Hw6WrbBWEqw1zg49e7XVH8Jnyc",
|
|
5
|
+
"token_type": "Bearer",
|
|
6
|
+
"user": {
|
|
7
|
+
"aux_data": {},
|
|
8
|
+
"birthday": "1964-09-29",
|
|
9
|
+
"date_created": "2023-12-20T15:03:40Z",
|
|
10
|
+
"email": "guest@email.com",
|
|
11
|
+
"first_name": "Bob",
|
|
12
|
+
"guest": true,
|
|
13
|
+
"id": "e1o21aFq9YNMh9U5S7TwU1",
|
|
14
|
+
"last_login": "2024-05-07T18:41:37Z",
|
|
15
|
+
"last_name": "Lablaw",
|
|
16
|
+
"phone_number": "(212) 867-5309",
|
|
17
|
+
"prefix": "Mr."
|
|
18
|
+
},
|
|
19
|
+
"uuid": "6ybyWXy7ZnF2xgWPmBz6c2"
|
|
20
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addresses": {
|
|
3
|
+
"home": {
|
|
4
|
+
"city": "New York",
|
|
5
|
+
"company": null,
|
|
6
|
+
"country": "US",
|
|
7
|
+
"delivery_instructions": "Beware of dog",
|
|
8
|
+
"is_default": true,
|
|
9
|
+
"latitude": 40.781106,
|
|
10
|
+
"longitude": -73.976388,
|
|
11
|
+
"state": "NY",
|
|
12
|
+
"street_1": "200 Central Park West",
|
|
13
|
+
"street_2": "5th floor",
|
|
14
|
+
"street_3": null,
|
|
15
|
+
"zipcode": "10024"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"last_used_address": null,
|
|
19
|
+
"user": {
|
|
20
|
+
"id": "m3Lyi...HmgYRecj"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"application_name": "testapplication",
|
|
3
|
+
"session_uuid": "eJkjsss73yHugT3bfYYny",
|
|
4
|
+
"token": "eyJ0eXA...lbfSANjfqcB4Hw6WrbBWEqw1zg49e7XVH8Jnyc",
|
|
5
|
+
"token_type": "Bearer",
|
|
6
|
+
"user": {
|
|
7
|
+
"aux_data": {},
|
|
8
|
+
"birthday": "1964-09-29",
|
|
9
|
+
"date_created": "2023-12-20T15:03:40Z",
|
|
10
|
+
"email": "guest@email.com",
|
|
11
|
+
"first_name": "Bob",
|
|
12
|
+
"guest": true,
|
|
13
|
+
"id": "e1o21aFq9YNMh9U5S7TwU1",
|
|
14
|
+
"last_login": "2024-05-07T18:41:37Z",
|
|
15
|
+
"last_name": "Lablaw",
|
|
16
|
+
"phone_number": "(212) 867-5309",
|
|
17
|
+
"prefix": "Mr."
|
|
18
|
+
},
|
|
19
|
+
"uuid": "6ybyWXy7ZnF2xgWPmBz6c2"
|
|
20
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"application_name": "testapplication",
|
|
3
|
+
"session_uuid": "7RtrhxTE65DTpCrmAJqWn5",
|
|
4
|
+
"token": "eyJ0eXAiOiJKV1QiL...CKV5nBL5-pY",
|
|
5
|
+
"token_type": "Bearer",
|
|
6
|
+
"user": {
|
|
7
|
+
"aux_data": {
|
|
8
|
+
"thirstieaccess_email_opt_in": "True"
|
|
9
|
+
},
|
|
10
|
+
"birthday": "1964-09-29",
|
|
11
|
+
"date_created": "2019-12-20T22:09:46Z",
|
|
12
|
+
"email": "loggedin@example.com",
|
|
13
|
+
"first_name": "Bart",
|
|
14
|
+
"guest": false,
|
|
15
|
+
"id": "e94i6FaU3u9f5hC4PTnKn7",
|
|
16
|
+
"last_login": "2024-06-27T16:24:57Z",
|
|
17
|
+
"last_name": "Mosley",
|
|
18
|
+
"phone_number": "(322) 222-2222",
|
|
19
|
+
"prefix": "Mr.",
|
|
20
|
+
"userRoles": []
|
|
21
|
+
},
|
|
22
|
+
"uuid": "6ybyWXy7ZnF2xgWPmBz6c2"
|
|
23
|
+
}
|