@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 +1 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
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
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>;
|