Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions generated/models/ApiCreateNewWaveParticipationConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import { ApiCreateNewWaveScope } from '../models/ApiCreateNewWaveScope';
import { ApiIntRange } from '../models/ApiIntRange';
import { ApiWaveParticipationRequirement } from '../models/ApiWaveParticipationRequirement';
import { ApiWaveParticipationSubmissionStrategy } from '../models/ApiWaveParticipationSubmissionStrategy';
import { ApiWaveRequiredMetadata } from '../models/ApiWaveRequiredMetadata';
import { HttpFile } from '../http/http';

Expand All @@ -37,6 +38,7 @@ export class ApiCreateNewWaveParticipationConfig {
*/
'terms': string | null;
'period'?: ApiIntRange;
'submission_strategy'?: ApiWaveParticipationSubmissionStrategy | null;

static readonly discriminator: string | undefined = undefined;

Expand Down Expand Up @@ -84,6 +86,12 @@ export class ApiCreateNewWaveParticipationConfig {
"baseName": "period",
"type": "ApiIntRange",
"format": ""
},
{
"name": "submission_strategy",
"baseName": "submission_strategy",
"type": "ApiWaveParticipationSubmissionStrategy",
"format": ""
} ];

static getAttributeTypeMap() {
Expand Down
6 changes: 3 additions & 3 deletions generated/models/ApiDrop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

import { ApiDropContextProfileContext } from '../models/ApiDropContextProfileContext';
import { ApiDropMentionedUser } from '../models/ApiDropMentionedUser';
import { ApiDropMetadata } from '../models/ApiDropMetadata';
import { ApiDropMetadataResponse } from '../models/ApiDropMetadataResponse';
import { ApiDropNftLink } from '../models/ApiDropNftLink';
import { ApiDropPart } from '../models/ApiDropPart';
import { ApiDropRater } from '../models/ApiDropRater';
Expand Down Expand Up @@ -57,7 +57,7 @@ export class ApiDrop {
'referenced_nfts': Array<ApiDropReferencedNFT>;
'mentioned_users': Array<ApiDropMentionedUser>;
'mentioned_waves': Array<ApiMentionedWave>;
'metadata': Array<ApiDropMetadata>;
'metadata': Array<ApiDropMetadataResponse>;
'rating': number;
'realtime_rating': number;
'rating_prediction': number;
Expand Down Expand Up @@ -175,7 +175,7 @@ export class ApiDrop {
{
"name": "metadata",
"baseName": "metadata",
"type": "Array<ApiDropMetadata>",
"type": "Array<ApiDropMetadataResponse>",
"format": ""
},
{
Expand Down
52 changes: 52 additions & 0 deletions generated/models/ApiDropMetadataResponse.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
// @ts-nocheck
/**
* 6529.io API
* This is the API interface description. Brief terminology overview and an authentication example can be found at <a href=\"https://6529.io/about/api\">https://6529.io/about/api</a>.
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

import { ApiProfileMin } from '../models/ApiProfileMin';
import { HttpFile } from '../http/http';

export class ApiDropMetadataResponse {
'data_key': string;
'data_value': string;
'resolved_profile'?: ApiProfileMin | null;

static readonly discriminator: string | undefined = undefined;

static readonly mapping: {[index: string]: string} | undefined = undefined;

static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "data_key",
"baseName": "data_key",
"type": "string",
"format": ""
},
{
"name": "data_value",
"baseName": "data_value",
"type": "string",
"format": ""
},
{
"name": "resolved_profile",
"baseName": "resolved_profile",
"type": "ApiProfileMin",
"format": ""
} ];

static getAttributeTypeMap() {
return ApiDropMetadataResponse.attributeTypeMap;
}

public constructor() {
}
}
6 changes: 3 additions & 3 deletions generated/models/ApiDropWithoutWave.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

import { ApiDropContextProfileContext } from '../models/ApiDropContextProfileContext';
import { ApiDropMentionedUser } from '../models/ApiDropMentionedUser';
import { ApiDropMetadata } from '../models/ApiDropMetadata';
import { ApiDropMetadataResponse } from '../models/ApiDropMetadataResponse';
import { ApiDropNftLink } from '../models/ApiDropNftLink';
import { ApiDropPart } from '../models/ApiDropPart';
import { ApiDropRater } from '../models/ApiDropRater';
Expand Down Expand Up @@ -55,7 +55,7 @@ export class ApiDropWithoutWave {
'referenced_nfts': Array<ApiDropReferencedNFT>;
'mentioned_users': Array<ApiDropMentionedUser>;
'mentioned_waves': Array<ApiMentionedWave>;
'metadata': Array<ApiDropMetadata>;
'metadata': Array<ApiDropMetadataResponse>;
'rating': number;
'realtime_rating': number;
'rating_prediction': number;
Expand Down Expand Up @@ -167,7 +167,7 @@ export class ApiDropWithoutWave {
{
"name": "metadata",
"baseName": "metadata",
"type": "Array<ApiDropMetadata>",
"type": "Array<ApiDropMetadataResponse>",
"format": ""
},
{
Expand Down
14 changes: 14 additions & 0 deletions generated/models/ApiMemesMintStat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ import { HttpFile } from '../http/http';
export class ApiMemesMintStat {
'id': number;
'mint_date': Date | null;
'total_count': number;
'mint_count': number;
'subscriptions_count': number;
'proceeds_eth': number;
'proceeds_usd': number;
'artist_split_eth': number;
Expand All @@ -39,12 +41,24 @@ export class ApiMemesMintStat {
"type": "Date",
"format": "date-time"
},
{
"name": "total_count",
"baseName": "total_count",
"type": "number",
"format": "int64"
},
{
"name": "mint_count",
"baseName": "mint_count",
"type": "number",
"format": "int64"
},
{
"name": "subscriptions_count",
"baseName": "subscriptions_count",
"type": "number",
"format": "int64"
},
{
"name": "proceeds_eth",
"baseName": "proceeds_eth",
Expand Down
14 changes: 14 additions & 0 deletions generated/models/ApiMemesMintStatsTotals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
import { HttpFile } from '../http/http';

export class ApiMemesMintStatsTotals {
'total_count': number;
'mint_count': number;
'subscriptions_count': number;
'proceeds_eth': number;
'proceeds_usd': number;
'artist_split_eth': number;
Expand All @@ -26,12 +28,24 @@ export class ApiMemesMintStatsTotals {
static readonly mapping: {[index: string]: string} | undefined = undefined;

static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "total_count",
"baseName": "total_count",
"type": "number",
"format": "int64"
},
{
"name": "mint_count",
"baseName": "mint_count",
"type": "number",
"format": "int64"
},
{
"name": "subscriptions_count",
"baseName": "subscriptions_count",
"type": "number",
"format": "int64"
},
{
"name": "proceeds_eth",
"baseName": "proceeds_eth",
Expand Down
14 changes: 14 additions & 0 deletions generated/models/ApiMemesMintStatsYearly.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ import { HttpFile } from '../http/http';

export class ApiMemesMintStatsYearly {
'year': number;
'total_count': number;
'mint_count': number;
'subscriptions_count': number;
'proceeds_eth': number;
'proceeds_usd': number;
'artist_split_eth': number;
Expand All @@ -32,12 +34,24 @@ export class ApiMemesMintStatsYearly {
"type": "number",
"format": "int64"
},
{
"name": "total_count",
"baseName": "total_count",
"type": "number",
"format": "int64"
},
{
"name": "mint_count",
"baseName": "mint_count",
"type": "number",
"format": "int64"
},
{
"name": "subscriptions_count",
"baseName": "subscriptions_count",
"type": "number",
"format": "int64"
},
{
"name": "proceeds_eth",
"baseName": "proceeds_eth",
Expand Down
103 changes: 103 additions & 0 deletions generated/models/ApiUpdateWaveParticipationConfig.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
// @ts-nocheck
/**
* 6529.io API
* This is the API interface description. Brief terminology overview and an authentication example can be found at <a href=\"https://6529.io/about/api\">https://6529.io/about/api</a>.
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

import { ApiCreateNewWaveScope } from '../models/ApiCreateNewWaveScope';
import { ApiIntRange } from '../models/ApiIntRange';
import { ApiWaveParticipationRequirement } from '../models/ApiWaveParticipationRequirement';
import { ApiWaveParticipationSubmissionStrategy } from '../models/ApiWaveParticipationSubmissionStrategy';
import { ApiWaveRequiredMetadata } from '../models/ApiWaveRequiredMetadata';
import { HttpFile } from '../http/http';

export class ApiUpdateWaveParticipationConfig {
'scope': ApiCreateNewWaveScope;
/**
* The number of applications allowed per participant. Infinite if omitted.
*/
'no_of_applications_allowed_per_participant': number | null;
'required_media': Array<ApiWaveParticipationRequirement>;
/**
* The metadata that must be provided by the participant. Empty array if nothing is required.
*/
'required_metadata': Array<ApiWaveRequiredMetadata>;
/**
* If true then the votes must be signed by voters.
*/
'signature_required': boolean;
/**
* If this is and the \"signature_required\" is set then this will be embedded as a signature input data component for each drop.
*/
'terms': string | null;
'period'?: ApiIntRange;
'submission_strategy'?: ApiWaveParticipationSubmissionStrategy | null;

static readonly discriminator: string | undefined = undefined;

static readonly mapping: {[index: string]: string} | undefined = undefined;

static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "scope",
"baseName": "scope",
"type": "ApiCreateNewWaveScope",
"format": ""
},
{
"name": "no_of_applications_allowed_per_participant",
"baseName": "no_of_applications_allowed_per_participant",
"type": "number",
"format": "int64"
},
{
"name": "required_media",
"baseName": "required_media",
"type": "Array<ApiWaveParticipationRequirement>",
"format": ""
},
{
"name": "required_metadata",
"baseName": "required_metadata",
"type": "Array<ApiWaveRequiredMetadata>",
"format": ""
},
{
"name": "signature_required",
"baseName": "signature_required",
"type": "boolean",
"format": ""
},
{
"name": "terms",
"baseName": "terms",
"type": "string",
"format": ""
},
{
"name": "period",
"baseName": "period",
"type": "ApiIntRange",
"format": ""
},
{
"name": "submission_strategy",
"baseName": "submission_strategy",
"type": "ApiWaveParticipationSubmissionStrategy",
"format": ""
} ];

static getAttributeTypeMap() {
return ApiUpdateWaveParticipationConfig.attributeTypeMap;
}

public constructor() {
}
}
6 changes: 3 additions & 3 deletions generated/models/ApiUpdateWaveRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
*/

import { ApiCreateNewWaveChatConfig } from '../models/ApiCreateNewWaveChatConfig';
import { ApiCreateNewWaveParticipationConfig } from '../models/ApiCreateNewWaveParticipationConfig';
import { ApiCreateNewWaveVisibilityConfig } from '../models/ApiCreateNewWaveVisibilityConfig';
import { ApiCreateNewWaveVotingConfig } from '../models/ApiCreateNewWaveVotingConfig';
import { ApiCreateWaveConfig } from '../models/ApiCreateWaveConfig';
import { ApiUpdateWaveParticipationConfig } from '../models/ApiUpdateWaveParticipationConfig';
import { HttpFile } from '../http/http';

export class ApiUpdateWaveRequest {
Expand All @@ -29,7 +29,7 @@ export class ApiUpdateWaveRequest {
'picture': string | null;
'voting': ApiCreateNewWaveVotingConfig;
'visibility': ApiCreateNewWaveVisibilityConfig;
'participation': ApiCreateNewWaveParticipationConfig;
'participation': ApiUpdateWaveParticipationConfig;
'chat': ApiCreateNewWaveChatConfig;
'wave': ApiCreateWaveConfig;

Expand Down Expand Up @@ -65,7 +65,7 @@ export class ApiUpdateWaveRequest {
{
"name": "participation",
"baseName": "participation",
"type": "ApiCreateNewWaveParticipationConfig",
"type": "ApiUpdateWaveParticipationConfig",
"format": ""
},
{
Expand Down
Loading
Loading