File tree Expand file tree Collapse file tree 7 files changed +15
-15
lines changed
clients/algoliasearch-client-javascript/packages/ingestion/model Expand file tree Collapse file tree 7 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 1
1
// This file is generated, manual changes will be lost - read more on https://github.com/algolia/api-clients-automation.
2
2
3
3
import type { AuthenticationType } from './authenticationType' ;
4
- import type { PlatformType } from './platformType ' ;
4
+ import type { Platform } from './platform ' ;
5
5
6
6
export type Authentication = {
7
7
authenticationID : string ;
@@ -10,7 +10,7 @@ export type Authentication = {
10
10
11
11
name : string ;
12
12
13
- platform ?: PlatformType ;
13
+ platform ?: Platform ;
14
14
15
15
/**
16
16
* Date of creation (RFC3339 format).
Original file line number Diff line number Diff line change 2
2
3
3
import type { AuthInput } from './authInput' ;
4
4
import type { AuthenticationType } from './authenticationType' ;
5
- import type { PlatformType } from './platformType ' ;
5
+ import type { Platform } from './platform ' ;
6
6
7
7
export type AuthenticationCreate = {
8
8
type : AuthenticationType ;
9
9
10
10
name : string ;
11
11
12
- platform ?: PlatformType ;
12
+ platform ?: Platform ;
13
13
14
14
input : AuthInput ;
15
15
} ;
Original file line number Diff line number Diff line change 2
2
3
3
import type { AuthInput } from './authInput' ;
4
4
import type { AuthenticationType } from './authenticationType' ;
5
- import type { PlatformType } from './platformType ' ;
5
+ import type { Platform } from './platform ' ;
6
6
7
7
export type AuthenticationUpdate = {
8
8
type ?: AuthenticationType ;
9
9
10
10
name ?: string ;
11
11
12
- platform ?: PlatformType ;
12
+ platform ?: Platform ;
13
13
14
14
input ?: AuthInput ;
15
15
} ;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import type { AuthenticationTypeWithNone } from './authenticationTypeWithNone';
5
5
import type { AuthenticationUpdate } from './authenticationUpdate' ;
6
6
import type { DestinationType } from './destinationType' ;
7
7
import type { DestinationUpdate } from './destinationUpdate' ;
8
- import type { PlatformType } from './platformType ' ;
8
+ import type { Platform } from './platform ' ;
9
9
import type { SourceType } from './sourceType' ;
10
10
import type { SourceUpdate } from './sourceUpdate' ;
11
11
import type { TaskUpdate } from './taskUpdate' ;
@@ -100,7 +100,7 @@ export type GetAuthenticationsProps = {
100
100
/**
101
101
* Which platform the returned authentication should have. Can be a list of string separated with commas.
102
102
*/
103
- platform ?: PlatformType [ ] ;
103
+ platform ?: Platform [ ] ;
104
104
} ;
105
105
106
106
/**
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export * from './listSourcesResponse';
38
38
export * from './listTasksResponse' ;
39
39
export * from './methodType' ;
40
40
export * from './pagination' ;
41
- export * from './platformType ' ;
41
+ export * from './platform ' ;
42
42
export * from './run' ;
43
43
export * from './runListResponse' ;
44
44
export * from './runOutcome' ;
Original file line number Diff line number Diff line change 1
1
// This file is generated, manual changes will be lost - read more on https://github.com/algolia/api-clients-automation.
2
2
3
- export type PlatformType = 'bigcommerce' | 'commercetools' ;
3
+ export type Platform = 'bigcommerce' | 'commercetools' ;
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ components:
54
54
schema :
55
55
type : array
56
56
items :
57
- $ref : ' #/components/schemas/PlatformType '
57
+ $ref : ' #/components/schemas/Platform '
58
58
example : commercetools,bigcommerce
59
59
authenticationID :
60
60
name : authenticationID
@@ -223,7 +223,7 @@ components:
223
223
oneOf :
224
224
- $ref : ' #/components/schemas/AuthenticationType'
225
225
- $ref : ' #/components/schemas/AuthenticationNone'
226
- PlatformType :
226
+ Platform :
227
227
type : string
228
228
enum :
229
229
- bigcommerce
@@ -245,7 +245,7 @@ components:
245
245
name :
246
246
type : string
247
247
platform :
248
- $ref : ' #/components/schemas/PlatformType '
248
+ $ref : ' #/components/schemas/Platform '
249
249
createdAt :
250
250
$ref : ' #/components/schemas/createdAt'
251
251
updatedAt :
@@ -354,7 +354,7 @@ components:
354
354
name :
355
355
type : string
356
356
platform :
357
- $ref : ' #/components/schemas/PlatformType '
357
+ $ref : ' #/components/schemas/Platform '
358
358
input :
359
359
$ref : ' #/components/schemas/AuthInput'
360
360
required :
@@ -395,7 +395,7 @@ components:
395
395
name :
396
396
type : string
397
397
platform :
398
- $ref : ' #/components/schemas/PlatformType '
398
+ $ref : ' #/components/schemas/Platform '
399
399
input :
400
400
$ref : ' #/components/schemas/AuthInput'
401
401
AuthenticationUpdateResponse :
You can’t perform that action at this time.
0 commit comments