pmcf 3.3.0 → 3.3.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "3.3.0",
3
+ "version": "3.3.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -56,10 +56,10 @@ const BindServiceTypeDefinition = {
56
56
  notify: boolean_attribute_writeable_false,
57
57
  recordTTL: { ...default_attribute, writable: true },
58
58
  serial: { ...number_attribute, writable: true },
59
- refresh: { ...default_attribute, writable: true },
60
- retry: { ...default_attribute, writable: true },
61
- expire: { ...default_attribute, writable: true },
62
- minimum: { ...default_attribute, writable: true },
59
+ refresh: { ...default_attribute, writable: true, default: 36000 },
60
+ retry: { ...default_attribute, writable: true, default: 72000 },
61
+ expire: { ...default_attribute, writable: true, default: 600000 },
62
+ minimum: { ...default_attribute, writable: true, default: 60000 },
63
63
  allowedUpdates: { ...default_attribute, collection: true, writable: true }
64
64
  },
65
65
 
@@ -668,6 +668,7 @@ export class BindService extends ExtraSourceService {
668
668
  };
669
669
  refresh: {
670
670
  writable: boolean;
671
+ default: number;
671
672
  type: string;
672
673
  isKey: boolean;
673
674
  mandatory: boolean;
@@ -675,13 +676,13 @@ export class BindService extends ExtraSourceService {
675
676
  private?: boolean;
676
677
  depends?: string;
677
678
  description?: string;
678
- default?: any;
679
679
  set?: Function;
680
680
  get?: Function;
681
681
  env?: string[] | string;
682
682
  };
683
683
  retry: {
684
684
  writable: boolean;
685
+ default: number;
685
686
  type: string;
686
687
  isKey: boolean;
687
688
  mandatory: boolean;
@@ -689,13 +690,13 @@ export class BindService extends ExtraSourceService {
689
690
  private?: boolean;
690
691
  depends?: string;
691
692
  description?: string;
692
- default?: any;
693
693
  set?: Function;
694
694
  get?: Function;
695
695
  env?: string[] | string;
696
696
  };
697
697
  expire: {
698
698
  writable: boolean;
699
+ default: number;
699
700
  type: string;
700
701
  isKey: boolean;
701
702
  mandatory: boolean;
@@ -703,13 +704,13 @@ export class BindService extends ExtraSourceService {
703
704
  private?: boolean;
704
705
  depends?: string;
705
706
  description?: string;
706
- default?: any;
707
707
  set?: Function;
708
708
  get?: Function;
709
709
  env?: string[] | string;
710
710
  };
711
711
  minimum: {
712
712
  writable: boolean;
713
+ default: number;
713
714
  type: string;
714
715
  isKey: boolean;
715
716
  mandatory: boolean;
@@ -717,7 +718,6 @@ export class BindService extends ExtraSourceService {
717
718
  private?: boolean;
718
719
  depends?: string;
719
720
  description?: string;
720
- default?: any;
721
721
  set?: Function;
722
722
  get?: Function;
723
723
  env?: string[] | string;