File tree Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 11REPO cloudflare
2- VERSION_HASH 1f3d61bb7e51
3- LOAD cloudflare-base .yaml cloudflare-dns-record .yaml cloudflare-dns-zone.yaml
2+ VERSION_HASH 63b0b29ea312
3+ LOAD cloudflare-dns-record .yaml cloudflare-base .yaml cloudflare-dns-zone.yaml
44RESOURCES cloudflare-base.js cloudflare-dns-record-sync.js cloudflare-dns-zone-sync.js
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ namespace: cloudflare
33cloudflare-base :
44 defines : module
55 metadata :
6- version-hash : 1f3d61bb7e51
6+ version-hash : 63b0b29ea312
77 source : <<< cloudflare-base.js
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ var _CloudflareDNSRecord = class _CloudflareDNSRecord extends (_a = CloudflareEn
7979 type : this . definition . record_type ,
8080 name : this . definition . name
8181 } ;
82- if ( this . definition . content !== void 0 ) payload . content = this . definition . content ;
82+ if ( this . definition . content != null && this . definition . content !== "" ) payload . content = this . definition . content ;
8383 if ( typeof this . definition . ttl === "number" ) payload . ttl = this . definition . ttl ;
8484 if ( typeof this . definition . proxied === "boolean" ) payload . proxied = this . definition . proxied ;
8585 if ( typeof this . definition . priority === "number" ) payload . priority = this . definition . priority ;
@@ -110,7 +110,7 @@ var _CloudflareDNSRecord = class _CloudflareDNSRecord extends (_a = CloudflareEn
110110 type : this . definition . record_type ,
111111 name : this . definition . name
112112 } ;
113- if ( this . definition . content !== void 0 ) payload . content = this . definition . content ;
113+ if ( this . definition . content != null && this . definition . content !== "" ) payload . content = this . definition . content ;
114114 if ( typeof this . definition . ttl === "number" ) payload . ttl = this . definition . ttl ;
115115 if ( typeof this . definition . proxied === "boolean" ) payload . proxied = this . definition . proxied ;
116116 if ( typeof this . definition . priority === "number" ) payload . priority = this . definition . priority ;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cloudflare-dns-record:
33 defines : entity
44 metadata :
55 name : CloudflareDNSRecord
6- version-hash : 1f3d61bb7e51
6+ version-hash : 63b0b29ea312
77 schema :
88 secret_ref :
99 type : string
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ cloudflare-dns-zone:
33 defines : entity
44 metadata :
55 name : CloudflareDNSZone
6- version-hash : 1f3d61bb7e51
6+ version-hash : 63b0b29ea312
77 schema :
88 secret_ref :
99 type : string
Original file line number Diff line number Diff line change 11REPO netlify
22VERSION_HASH 7f6f1883a79e
3- LOAD account.yaml common .yaml form.yaml netlify-base .yaml site.yaml
4- RESOURCES account-sync.js form-sync.js netlify-base.js common .js site-sync.js
3+ LOAD account.yaml netlify-base .yaml form.yaml common .yaml site.yaml
4+ RESOURCES common.js account-sync.js form-sync.js netlify-base.js site-sync.js
Original file line number Diff line number Diff line change 11REPO vercel
22VERSION_HASH 3ace1cd1ed88
3- LOAD common .yaml deployment .yaml project .yaml vercel-base .yaml
4- RESOURCES common.js vercel-base.js deployment -sync.js project -sync.js
3+ LOAD deployment .yaml vercel-base .yaml common .yaml project .yaml
4+ RESOURCES common.js vercel-base.js project -sync.js deployment -sync.js
You can’t perform that action at this time.
0 commit comments