Skip to content

Commit 8f8a9d2

Browse files
algolia-botFluf22
andcommitted
chore: update instantsearch dependencies (#5743) (generated) [skip ci]
Co-authored-by: Thomas Raffray <Fluf22@users.noreply.github.com>
1 parent c691282 commit 8f8a9d2

File tree

6 files changed

+40
-0
lines changed

6 files changed

+40
-0
lines changed

clients/algoliasearch-client-javascript/packages/advanced-personalization/model/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,4 @@ export * from './tooManyRequestsResponse';
5555
export * from './unauthorized';
5656
export * from './unprocessableEntity';
5757
export * from './user';
58+
export * from './userType';

clients/algoliasearch-client-javascript/packages/advanced-personalization/model/user.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
22

33
import type { Affinity } from './affinity';
4+
import type { UserType } from './userType';
45

56
export type User = {
67
userID: string;
78

9+
type: UserType;
10+
811
affinities: Array<Affinity>;
912

1013
lastUpdatedAt: string;
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
2+
3+
export type UserType = 'basic' | 'predictive' | 'realtime';

docs/bundled/advanced-personalization.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1197,12 +1197,24 @@
11971197
}
11981198
}
11991199
},
1200+
"userType": {
1201+
"title": "userType",
1202+
"type": "string",
1203+
"enum": [
1204+
"basic",
1205+
"predictive",
1206+
"realtime"
1207+
]
1208+
},
12001209
"user": {
12011210
"type": "object",
12021211
"properties": {
12031212
"userID": {
12041213
"type": "string"
12051214
},
1215+
"type": {
1216+
"$ref": "#/components/schemas/userType"
1217+
},
12061218
"affinities": {
12071219
"type": "array",
12081220
"items": {
@@ -1246,6 +1258,7 @@
12461258
},
12471259
"required": [
12481260
"userID",
1261+
"type",
12491262
"affinities",
12501263
"lastUpdatedAt"
12511264
]

docs/bundled/advanced-personalization.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1247,11 +1247,20 @@ components:
12471247
$ref: '#/components/schemas/paymentRequired'
12481248
message:
12491249
$ref: '#/components/schemas/featureNotEnabled'
1250+
userType:
1251+
title: userType
1252+
type: string
1253+
enum:
1254+
- basic
1255+
- predictive
1256+
- realtime
12501257
user:
12511258
type: object
12521259
properties:
12531260
userID:
12541261
type: string
1262+
type:
1263+
$ref: '#/components/schemas/userType'
12551264
affinities:
12561265
type: array
12571266
items:
@@ -1283,6 +1292,7 @@ components:
12831292
type: string
12841293
required:
12851294
- userID
1295+
- type
12861296
- affinities
12871297
- lastUpdatedAt
12881298
unprocessableEntity:

specs/bundled/advanced-personalization.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -969,11 +969,20 @@ components:
969969
$ref: '#/components/schemas/paymentRequired'
970970
message:
971971
$ref: '#/components/schemas/featureNotEnabled'
972+
userType:
973+
title: userType
974+
type: string
975+
enum:
976+
- basic
977+
- predictive
978+
- realtime
972979
user:
973980
type: object
974981
properties:
975982
userID:
976983
type: string
984+
type:
985+
$ref: '#/components/schemas/userType'
977986
affinities:
978987
type: array
979988
items:
@@ -1005,6 +1014,7 @@ components:
10051014
type: string
10061015
required:
10071016
- userID
1017+
- type
10081018
- affinities
10091019
- lastUpdatedAt
10101020
unprocessableEntity:

0 commit comments

Comments
 (0)