Skip to content

Commit

Permalink
Automated SDK update
Browse files Browse the repository at this point in the history
This updates the SDK from internal repo commit segmentio/public-api@ebed4f3e.
  • Loading branch information
APIs and Common Services team committed Mar 4, 2024
1 parent edc2a09 commit 7d494a1
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions dist/model/audienceSummary.d.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { Definition1 } from './definition1';
import { Definition } from './definition';
export declare class AudienceSummary {
'id': string;
'spaceId': string;
'name': string;
'description': string;
'key': string;
'enabled': boolean;
'definition': Definition1 | null;
'definition': Definition | null;
'status'?: string;
'createdBy': string;
'updatedBy': string;
Expand Down
2 changes: 1 addition & 1 deletion dist/model/audienceSummary.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/model/audienceSummary.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/model/computedTraitSummary.d.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { Definition } from './definition';
import { Definition1 } from './definition1';
export declare class ComputedTraitSummary {
'id': string;
'spaceId': string;
'name': string;
'description': string;
'key': string;
'enabled': boolean;
'definition': Definition | null;
'definition': Definition1 | null;
'status'?: string;
'createdBy': string;
'updatedBy': string;
Expand Down
2 changes: 1 addition & 1 deletion dist/model/computedTraitSummary.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/model/computedTraitSummary.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions model/audienceSummary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/

import { RequestFile } from './models';
import { Definition1 } from './definition1';
import { Definition } from './definition';

/**
* Defines an Audience.
Expand Down Expand Up @@ -41,7 +41,7 @@ export class AudienceSummary {
* Enabled/disabled status for the audience.
*/
'enabled': boolean;
'definition': Definition1 | null;
'definition': Definition | null;
/**
* Status for the audience. Possible values: Backfilling, Computing, Failed, Live, Awaiting Destinations, Disabled.
*/
Expand Down Expand Up @@ -103,7 +103,7 @@ export class AudienceSummary {
{
name: 'definition',
baseName: 'definition',
type: 'Definition1',
type: 'Definition',
},
{
name: 'status',
Expand Down
6 changes: 3 additions & 3 deletions model/computedTraitSummary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/

import { RequestFile } from './models';
import { Definition } from './definition';
import { Definition1 } from './definition1';

/**
* Defines a Computed trait.
Expand Down Expand Up @@ -41,7 +41,7 @@ export class ComputedTraitSummary {
* Enabled/disabled status for the computed trait.
*/
'enabled': boolean;
'definition': Definition | null;
'definition': Definition1 | null;
/**
* Status for the computed trait. Possible values: Backfilling, Computing, Failed, Live, Awaiting Destinations, Disabled.
*/
Expand Down Expand Up @@ -103,7 +103,7 @@ export class ComputedTraitSummary {
{
name: 'definition',
baseName: 'definition',
type: 'Definition',
type: 'Definition1',
},
{
name: 'status',
Expand Down
4 changes: 2 additions & 2 deletions model/definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ import { RequestFile } from './models';
*/
export class Definition {
/**
* The query language string defining the computed trait aggregation criteria.
* The query language string defining the audience segmentation criteria.
*/
'query': string;
/**
* The underlying data type being aggregated for this computed trait. Possible values: users, accounts.
* The underlying data type being segmented for this audience. Possible values: users, accounts.
*/
'type': string;

Expand Down
4 changes: 2 additions & 2 deletions model/definition1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ import { RequestFile } from './models';
*/
export class Definition1 {
/**
* The query language string defining the audience segmentation criteria.
* The query language string defining the computed trait aggregation criteria.
*/
'query': string;
/**
* The underlying data type being segmented for this audience. Possible values: users, accounts.
* The underlying data type being aggregated for this computed trait. Possible values: users, accounts.
*/
'type': string;

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"uuid": "^8.3.2",
"request": "^2.88.2"
},
"version": "43.0.0-b8196",
"version": "43.0.0-b8200",
"devDependencies": {
"@types/bluebird": "^3.5.33",
"@types/jest": "^29",
Expand Down

0 comments on commit 7d494a1

Please sign in to comment.