Skip to content

Commit

Permalink
Merge pull request #34 from dimitrov-d/master
Browse files Browse the repository at this point in the history
Add new HostingWebsite fields
  • Loading branch information
MoMannn authored Sep 24, 2024
2 parents 409bf73 + eed6848 commit e48173a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@apillon/sdk",
"description": "▶◀ Apillon SDK for NodeJS ▶◀",
"version": "3.2.0",
"version": "3.3.0",
"author": "Apillon",
"license": "MIT",
"main": "./dist/index.js",
Expand Down
11 changes: 11 additions & 0 deletions packages/sdk/src/modules/hosting/hosting-website.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,20 @@ export class HostingWebsite extends ApillonModel {

/**
* IPNS CID for staging environment.
* @deprecated - Use `cidStaging` instead
*/
public ipnsStaging: string = null;

/**
* IPFS CID for staging environment.
*/
public cidStaging: string = null;

/**
* IPFS CID for production environment.
*/
public cidProduction: string = null;

/**
* IPNS CID for production environment.
*/
Expand Down

0 comments on commit e48173a

Please sign in to comment.