@geek-fun/serverlessinsight 0.6.5 → 0.6.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geek-fun/serverlessinsight",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "description": "Full life cycle cross providers serverless application management for your fast-growing business.",
5
5
  "homepage": "https://serverlessinsight.geekfun.club",
6
6
  "main": "dist/src/index.js",
@@ -44,6 +44,7 @@ const generateApigwPlan = async (context, state, events, serviceName) => {
44
44
  ? {
45
45
  domainName: event.domain.domain_name,
46
46
  hasCertificate: !!(event.domain.certificate_body || event.domain.certificate_id),
47
+ protocol: event.domain.protocol ?? null,
47
48
  }
48
49
  : null,
49
50
  };
@@ -134,6 +134,7 @@ const createApigwResource = async (context, event, serviceName, roleArn, state)
134
134
  ? {
135
135
  domainName: event.domain.domain_name,
136
136
  hasCertificate: !!(event.domain.certificate_body || event.domain.certificate_id),
137
+ protocol: event.domain.protocol ?? null,
137
138
  }
138
139
  : null,
139
140
  },
@@ -173,6 +174,7 @@ const createApigwResource = async (context, event, serviceName, roleArn, state)
173
174
  ? {
174
175
  domainName: event.domain.domain_name,
175
176
  hasCertificate: !!(event.domain.certificate_body || event.domain.certificate_id),
177
+ protocol: event.domain.protocol ?? null,
176
178
  }
177
179
  : null,
178
180
  },
@@ -208,6 +210,7 @@ const createApigwResource = async (context, event, serviceName, roleArn, state)
208
210
  ? {
209
211
  domainName: event.domain.domain_name,
210
212
  hasCertificate: !!(event.domain.certificate_body || event.domain.certificate_id),
213
+ protocol: event.domain.protocol ?? null,
211
214
  }
212
215
  : null,
213
216
  },
@@ -316,6 +319,7 @@ const updateApigwResource = async (context, event, serviceName, roleArn, state)
316
319
  ? {
317
320
  domainName: event.domain.domain_name,
318
321
  hasCertificate: !!(event.domain.certificate_body || event.domain.certificate_id),
322
+ protocol: event.domain.protocol ?? null,
319
323
  }
320
324
  : null,
321
325
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geek-fun/serverlessinsight",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "description": "Full life cycle cross providers serverless application management for your fast-growing business.",
5
5
  "homepage": "https://serverlessinsight.geekfun.club",
6
6
  "main": "dist/src/index.js",