@shipstatic/types 0.3.20 → 0.3.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -478,6 +478,7 @@ export interface DeploymentResource {
478
478
  */
479
479
  export interface DomainResource {
480
480
  set: (domainName: string, deployment?: string, tags?: string[]) => Promise<Domain>;
481
+ update: (domainName: string, tags: string[]) => Promise<Domain>;
481
482
  get: (domainName: string) => Promise<Domain>;
482
483
  list: () => Promise<DomainListResponse>;
483
484
  remove: (domainName: string) => Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "0.3.20",
3
+ "version": "0.3.21",
4
4
  "description": "Shared types for Shipstatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -731,6 +731,7 @@ export interface DeploymentResource {
731
731
  */
732
732
  export interface DomainResource {
733
733
  set: (domainName: string, deployment?: string, tags?: string[]) => Promise<Domain>;
734
+ update: (domainName: string, tags: string[]) => Promise<Domain>;
734
735
  get: (domainName: string) => Promise<Domain>;
735
736
  list: () => Promise<DomainListResponse>;
736
737
  remove: (domainName: string) => Promise<void>;