Skip to content

Commit 8430736

Browse files
algolia-botmillotp
andcommittedMar 19, 2025·
feat(specs): add the owner attributes to ingestion resources (generated)
algolia/api-clients-automation#4616 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent 6cf5d25 commit 8430736

File tree

5 files changed

+25
-0
lines changed

5 files changed

+25
-0
lines changed
 

‎packages/ingestion/model/authentication.ts

+5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ export type Authentication = {
2222

2323
platform?: Platform | null;
2424

25+
/**
26+
* Owner of the resource.
27+
*/
28+
owner?: string | null;
29+
2530
input: AuthInputPartial;
2631

2732
/**

‎packages/ingestion/model/destination.ts

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ export type Destination = {
1919
*/
2020
name: string;
2121

22+
/**
23+
* Owner of the resource.
24+
*/
25+
owner?: string | null;
26+
2227
input: DestinationInput;
2328

2429
/**

‎packages/ingestion/model/source.ts

+5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ export type Source = {
1313

1414
name: string;
1515

16+
/**
17+
* Owner of the resource.
18+
*/
19+
owner?: string | null;
20+
1621
input?: SourceInput;
1722

1823
/**

‎packages/ingestion/model/task.ts

+5
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ export type Task = {
3636
*/
3737
nextRun?: string;
3838

39+
/**
40+
* Owner of the resource.
41+
*/
42+
owner?: string | null;
43+
3944
input?: TaskInput;
4045

4146
/**

‎packages/ingestion/model/transformation.ts

+5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ export type Transformation = {
2626
*/
2727
description?: string;
2828

29+
/**
30+
* Owner of the resource.
31+
*/
32+
owner?: string | null;
33+
2934
/**
3035
* Date of creation in RFC 3339 format.
3136
*/

0 commit comments

Comments
 (0)
Please sign in to comment.