@forteplatforms/sdk 1.0.355 → 1.0.359

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.
@@ -62,6 +62,9 @@ export declare const DnsRecordRequirementTypeType: {
62
62
  readonly CNAME: "CNAME";
63
63
  readonly MX: "MX";
64
64
  readonly TXT: "TXT";
65
+ readonly NS: "NS";
66
+ readonly CAA: "CAA";
67
+ readonly SRV: "SRV";
65
68
  };
66
69
  export type DnsRecordRequirementTypeType = typeof DnsRecordRequirementTypeType[keyof typeof DnsRecordRequirementTypeType];
67
70
  /**
@@ -28,7 +28,10 @@ exports.DnsRecordRequirementTypeType = {
28
28
  ALIAS: 'ALIAS',
29
29
  CNAME: 'CNAME',
30
30
  MX: 'MX',
31
- TXT: 'TXT'
31
+ TXT: 'TXT',
32
+ NS: 'NS',
33
+ CAA: 'CAA',
34
+ SRV: 'SRV'
32
35
  };
33
36
  /**
34
37
  * @export
@@ -296,6 +296,17 @@ export declare const ForteApiExceptionErrorCodeType: {
296
296
  readonly STATUS_ANNOUNCEMENT_NOT_FOUND: "STATUS_ANNOUNCEMENT_NOT_FOUND";
297
297
  readonly INVALID_STATUS_EVENT_WINDOWS: "INVALID_STATUS_EVENT_WINDOWS";
298
298
  readonly INVALID_STATUS_EVENT_AVAILABILITY: "INVALID_STATUS_EVENT_AVAILABILITY";
299
+ readonly DNS_HOSTING_NOT_ENABLED: "DNS_HOSTING_NOT_ENABLED";
300
+ readonly DNS_ZONE_NOT_FOUND: "DNS_ZONE_NOT_FOUND";
301
+ readonly DNS_ZONE_ALREADY_EXISTS: "DNS_ZONE_ALREADY_EXISTS";
302
+ readonly DNS_ZONE_INVALID_DOMAIN: "DNS_ZONE_INVALID_DOMAIN";
303
+ readonly DNS_ZONE_RESERVED_SUFFIX: "DNS_ZONE_RESERVED_SUFFIX";
304
+ readonly DNS_ZONE_NOT_ACTIVE: "DNS_ZONE_NOT_ACTIVE";
305
+ readonly DNS_RECORD_NOT_FOUND: "DNS_RECORD_NOT_FOUND";
306
+ readonly DNS_RECORD_MANAGED: "DNS_RECORD_MANAGED";
307
+ readonly DNS_RECORD_INVALID: "DNS_RECORD_INVALID";
308
+ readonly DNS_RECORD_APEX_CNAME_NOT_ALLOWED: "DNS_RECORD_APEX_CNAME_NOT_ALLOWED";
309
+ readonly DNS_ZONE_QUOTA_EXCEEDED: "DNS_ZONE_QUOTA_EXCEEDED";
299
310
  };
300
311
  export type ForteApiExceptionErrorCodeType = typeof ForteApiExceptionErrorCodeType[keyof typeof ForteApiExceptionErrorCodeType];
301
312
  /**
@@ -280,7 +280,18 @@ exports.ForteApiExceptionErrorCodeType = {
280
280
  STATUS_EVENT_NOT_FOUND: 'STATUS_EVENT_NOT_FOUND',
281
281
  STATUS_ANNOUNCEMENT_NOT_FOUND: 'STATUS_ANNOUNCEMENT_NOT_FOUND',
282
282
  INVALID_STATUS_EVENT_WINDOWS: 'INVALID_STATUS_EVENT_WINDOWS',
283
- INVALID_STATUS_EVENT_AVAILABILITY: 'INVALID_STATUS_EVENT_AVAILABILITY'
283
+ INVALID_STATUS_EVENT_AVAILABILITY: 'INVALID_STATUS_EVENT_AVAILABILITY',
284
+ DNS_HOSTING_NOT_ENABLED: 'DNS_HOSTING_NOT_ENABLED',
285
+ DNS_ZONE_NOT_FOUND: 'DNS_ZONE_NOT_FOUND',
286
+ DNS_ZONE_ALREADY_EXISTS: 'DNS_ZONE_ALREADY_EXISTS',
287
+ DNS_ZONE_INVALID_DOMAIN: 'DNS_ZONE_INVALID_DOMAIN',
288
+ DNS_ZONE_RESERVED_SUFFIX: 'DNS_ZONE_RESERVED_SUFFIX',
289
+ DNS_ZONE_NOT_ACTIVE: 'DNS_ZONE_NOT_ACTIVE',
290
+ DNS_RECORD_NOT_FOUND: 'DNS_RECORD_NOT_FOUND',
291
+ DNS_RECORD_MANAGED: 'DNS_RECORD_MANAGED',
292
+ DNS_RECORD_INVALID: 'DNS_RECORD_INVALID',
293
+ DNS_RECORD_APEX_CNAME_NOT_ALLOWED: 'DNS_RECORD_APEX_CNAME_NOT_ALLOWED',
294
+ DNS_ZONE_QUOTA_EXCEEDED: 'DNS_ZONE_QUOTA_EXCEEDED'
284
295
  };
285
296
  /**
286
297
  * Check if a given object implements the ForteApiException interface.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forteplatforms/sdk",
3
- "version": "1.0.355",
3
+ "version": "1.0.359",
4
4
  "description": "Official TypeScript SDK for Forte Platforms",
5
5
  "author": "Forte Platforms <support@forteplatforms.com>",
6
6
  "repository": {