Skip to content

Commit 4e3f37f

Browse files
authored
Merge branch 'main' into chore/renovateBaseBranch
2 parents b849935 + fabffc5 commit 4e3f37f

File tree

49 files changed

+235
-162
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+235
-162
lines changed

clients/algoliasearch-client-javascript/packages/advanced-personalization/src/advancedPersonalizationClient.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,12 @@ export function createAdvancedPersonalizationClient({
126126
},
127127

128128
/**
129-
* Sends a request to compute the user\'s personalization profile.
129+
* Sends a request to compute the real-time user\'s personalization profile.
130130
*
131131
* Required API Key ACLs:
132132
* - recommendation
133+
*
134+
* @deprecated
133135
* @param computeRealtimeUser - The computeRealtimeUser object.
134136
* @param computeRealtimeUser.userToken - Unique identifier representing a user for which to fetch the personalization profile.
135137
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
@@ -328,7 +330,7 @@ export function createAdvancedPersonalizationClient({
328330
},
329331

330332
/**
331-
* Retrieves the user\'s personalization profiles containing search filters.
333+
* Retrieves the real-time user\'s personalization profiles containing search filters.
332334
*
333335
* Required API Key ACLs:
334336
* - recommendation

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ services:
1414
- PYTHON_VERSION=${PYTHON_VERSION}
1515
command: tail -f /dev/null
1616
volumes: [./:/app]
17-
# ports:
18-
# - "5009:5009" # So we can debug the OpenAPI Generator process
17+
ports:
18+
- "5009:5009" # So we can debug the OpenAPI Generator process
1919

2020
ruby:
2121
container_name: apic_ruby

docs/bundled/advanced-personalization.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -572,8 +572,8 @@
572572
"x-acl": [
573573
"recommendation"
574574
],
575-
"summary": "Retrieve the user's personalization profile",
576-
"description": "Retrieves the user's personalization profiles containing search filters.",
575+
"summary": "Retrieve the real-time user's personalization profile",
576+
"description": "Retrieves the real-time user's personalization profiles containing search filters.",
577577
"parameters": [
578578
{
579579
"$ref": "#/components/parameters/UserToken"
@@ -614,8 +614,9 @@
614614
"x-acl": [
615615
"recommendation"
616616
],
617-
"summary": "Compute the user's personalization profile",
618-
"description": "Sends a request to compute the user's personalization profile.",
617+
"summary": "Compute the real-time user's personalization profile",
618+
"description": "Sends a request to compute the real-time user's personalization profile.",
619+
"deprecated": true,
619620
"parameters": [
620621
{
621622
"$ref": "#/components/parameters/UserToken"

docs/bundled/advanced-personalization.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -739,8 +739,10 @@ paths:
739739
operationId: getRealtimeUser
740740
x-acl:
741741
- recommendation
742-
summary: Retrieve the user's personalization profile
743-
description: Retrieves the user's personalization profiles containing search filters.
742+
summary: Retrieve the real-time user's personalization profile
743+
description: >-
744+
Retrieves the real-time user's personalization profiles containing
745+
search filters.
744746
parameters:
745747
- $ref: '#/components/parameters/UserToken'
746748
responses:
@@ -796,8 +798,9 @@ paths:
796798
operationId: computeRealtimeUser
797799
x-acl:
798800
- recommendation
799-
summary: Compute the user's personalization profile
800-
description: Sends a request to compute the user's personalization profile.
801+
summary: Compute the real-time user's personalization profile
802+
description: Sends a request to compute the real-time user's personalization profile.
803+
deprecated: true
801804
parameters:
802805
- $ref: '#/components/parameters/UserToken'
803806
responses:

docs/bundled/insights-snippets.json

Lines changed: 11 additions & 11 deletions
Large diffs are not rendered by default.

docs/snippets/csharp/src/Insights.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ public async Task SnippetForInsightsClientPushEvents1()
509509
Index = "products",
510510
UserToken = "user-123456",
511511
AuthenticatedUserToken = "user-123456",
512-
Timestamp = 1757894400000L,
512+
Timestamp = 1758153600000L,
513513
ObjectIDs = new List<string> { "9780545139700", "9780439784542" },
514514
QueryID = "43b15df305339e827f0ac0bdc5ebcaa7",
515515
}
@@ -522,7 +522,7 @@ public async Task SnippetForInsightsClientPushEvents1()
522522
Index = "products",
523523
UserToken = "user-123456",
524524
AuthenticatedUserToken = "user-123456",
525-
Timestamp = 1757894400000L,
525+
Timestamp = 1758153600000L,
526526
ObjectIDs = new List<string> { "9780545139700", "9780439784542" },
527527
}
528528
),

docs/snippets/dart/lib/insights.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ void snippetForpushEvents1() async {
566566
index: "products",
567567
userToken: "user-123456",
568568
authenticatedUserToken: "user-123456",
569-
timestamp: 1757894400000,
569+
timestamp: 1758153600000,
570570
objectIDs: [
571571
"9780545139700",
572572
"9780439784542",
@@ -579,7 +579,7 @@ void snippetForpushEvents1() async {
579579
index: "products",
580580
userToken: "user-123456",
581581
authenticatedUserToken: "user-123456",
582-
timestamp: 1757894400000,
582+
timestamp: 1758153600000,
583583
objectIDs: [
584584
"9780545139700",
585585
"9780439784542",

docs/snippets/go/src/insights.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/snippets/java/src/test/java/com/algolia/Insights.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ void snippetForPushEvents1() throws Exception {
488488
.setIndex("products")
489489
.setUserToken("user-123456")
490490
.setAuthenticatedUserToken("user-123456")
491-
.setTimestamp(1757894400000L)
491+
.setTimestamp(1758153600000L)
492492
.setObjectIDs(Arrays.asList("9780545139700", "9780439784542"))
493493
.setQueryID("43b15df305339e827f0ac0bdc5ebcaa7"),
494494
new ViewedObjectIDs()
@@ -497,7 +497,7 @@ void snippetForPushEvents1() throws Exception {
497497
.setIndex("products")
498498
.setUserToken("user-123456")
499499
.setAuthenticatedUserToken("user-123456")
500-
.setTimestamp(1757894400000L)
500+
.setTimestamp(1758153600000L)
501501
.setObjectIDs(Arrays.asList("9780545139700", "9780439784542"))
502502
)
503503
)

docs/snippets/javascript/src/insights.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ export async function snippetForPushEvents1(): Promise<void> {
453453
index: 'products',
454454
userToken: 'user-123456',
455455
authenticatedUserToken: 'user-123456',
456-
timestamp: 1757894400000,
456+
timestamp: 1758153600000,
457457
objectIDs: ['9780545139700', '9780439784542'],
458458
queryID: '43b15df305339e827f0ac0bdc5ebcaa7',
459459
},
@@ -463,7 +463,7 @@ export async function snippetForPushEvents1(): Promise<void> {
463463
index: 'products',
464464
userToken: 'user-123456',
465465
authenticatedUserToken: 'user-123456',
466-
timestamp: 1757894400000,
466+
timestamp: 1758153600000,
467467
objectIDs: ['9780545139700', '9780439784542'],
468468
},
469469
],

0 commit comments

Comments
 (0)