Skip to content

Commit

Permalink
app: increment version to 5.3.0 and generate types
Browse files Browse the repository at this point in the history
  • Loading branch information
psparacino committed Jan 22, 2024
1 parent 31e8527 commit 5fe8f99
Show file tree
Hide file tree
Showing 64 changed files with 2,600 additions and 1,004 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
export const operations = {
get_activities: { path: "/activities", method: "get" },
get_categories: { path: "/categories", method: "get" },
get_activities: { path: "/activities", method: "get" },
get_countries: { path: "/countries", method: "get" },
post_login: { path: "/login", method: "post" },
get_projects: { path: "/projects", method: "get" },
get_purchases: { path: "/purchases", method: "get" },
post_users: { path: "/users", method: "post" },
get_projects: { path: "/projects", method: "get" },
get_vintages: { path: "/vintages", method: "get" },
post_users: { path: "/users", method: "post" },
"get_listings-id": { path: "/listings/:id", method: "get" },
"post_login-verify": { path: "/login/verify", method: "post" },
"get_projects-id": { path: "/projects/:id", method: "get" },
"get_purchases-id": { path: "/purchases/:id", method: "get" },
"get_projects-id": { path: "/projects/:id", method: "get" },
"get_users-walletorhandle": { path: "/users/:walletOrHandle", method: "get" },
"put_users-wallet": { path: "/users/:wallet", method: "put" },
"get_projects-id-activity": { path: "/projects/:id/activity", method: "get" },
Expand Down
3 changes: 2 additions & 1 deletion carbonmark/.generated/carbonmark-api-sdk/schemas/Asset.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"id": { "type": "string" },
"name": { "type": "string" },
"symbol": { "type": "string" },
"decimals": { "type": "number" }
"decimals": { "type": "number" },
"tokenId": { "type": "string" }
},
"required": ["id", "name", "symbol", "decimals"]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,9 @@
"required": ["url", "caption"]
}
},
"hasSupply": { "type": "boolean" }
"hasSupply": { "type": "boolean" },
"tokenId": { "type": "string" },
"serialization": { "type": "string" }
},
"required": [
"key",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@
"type": "string"
},
"projectID": { "examples": ["191"], "type": "string" },
"vintage": { "examples": ["2008"], "type": "string" }
"vintage": { "examples": ["2008"], "type": "string" },
"serialization": {
"examples": ["ICR-ISL-354-78040-14-R-0-2021"],
"type": "string"
}
},
"required": [
"country",
Expand Down
3 changes: 2 additions & 1 deletion carbonmark/.generated/carbonmark-api-sdk/schemas/User.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@
"id": { "type": "string" },
"name": { "type": "string" },
"symbol": { "type": "string" },
"decimals": { "type": "number" }
"decimals": { "type": "number" },
"tokenId": { "type": "string" }
},
"required": ["id", "name", "symbol", "decimals"]
},
Expand Down
4 changes: 4 additions & 0 deletions carbonmark/.generated/carbonmark-api-sdk/types/Asset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ export type Asset = {
* @type number
*/
decimals: number;
/**
* @type string | undefined
*/
tokenId?: string;
};
/**
* @type string
Expand Down
8 changes: 8 additions & 0 deletions carbonmark/.generated/carbonmark-api-sdk/types/GetProjects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,14 @@ export type GetProjectsQueryResponse = {
* @type boolean
*/
hasSupply: boolean;
/**
* @type string | undefined
*/
tokenId?: string;
/**
* @type string | undefined
*/
serialization?: string;
}[];

export type GetProjectsQueryParams = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,14 @@ export type GetProjectsIdQueryResponse = {
* @type boolean
*/
hasSupply: boolean;
/**
* @type string | undefined
*/
tokenId?: string;
/**
* @type string | undefined
*/
serialization?: string;
};

export type GetProjectsIdQueryParams = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ export type GetPurchasesQueryResponse = {
* @type string
*/
vintage: string;
/**
* @type string | undefined
*/
serialization?: string;
};
};
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ export type GetPurchasesIdQueryResponse = {
* @type string
*/
vintage: string;
/**
* @type string | undefined
*/
serialization?: string;
};
};
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,10 @@ export type GetUsersWalletorhandleQueryResponse = {
* @type number
*/
decimals: number;
/**
* @type string | undefined
*/
tokenId?: string;
};
/**
* @type string
Expand Down
8 changes: 8 additions & 0 deletions carbonmark/.generated/carbonmark-api-sdk/types/Project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,4 +245,12 @@ export type Project = {
* @type boolean
*/
hasSupply: boolean;
/**
* @type string | undefined
*/
tokenId?: string;
/**
* @type string | undefined
*/
serialization?: string;
};
4 changes: 4 additions & 0 deletions carbonmark/.generated/carbonmark-api-sdk/types/Purchase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ export type Purchase = {
* @type string
*/
vintage: string;
/**
* @type string | undefined
*/
serialization?: string;
};
};
/**
Expand Down
4 changes: 4 additions & 0 deletions carbonmark/.generated/carbonmark-api-sdk/types/User.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,10 @@ export type User = {
* @type number
*/
decimals: number;
/**
* @type string | undefined
*/
tokenId?: string;
};
/**
* @type string
Expand Down
Loading

0 comments on commit 5fe8f99

Please sign in to comment.