namirasoft-bill-watch 1.4.39 → 1.4.40

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.
@@ -22,7 +22,7 @@ const NamirasoftBillWatchServerRuleTag_1 = require("./NamirasoftBillWatchServerR
22
22
  const NamirasoftBillWatchServerValue_1 = require("./NamirasoftBillWatchServerValue");
23
23
  class NamirasoftBillWatchServer extends namirasoft_account_1.NSABaseServer {
24
24
  constructor(base_url, manager, onError) {
25
- super(base_url, `1.4.39`, manager, onError);
25
+ super(base_url, `1.4.40`, manager, onError);
26
26
  this.healthz = new NamirasoftBillWatchServerHealthz_1.NamirasoftBillWatchServerHealthz(this);
27
27
  this.value = new NamirasoftBillWatchServerValue_1.NamirasoftBillWatchServerValue(this);
28
28
  this.a_w_s_category = new NamirasoftBillWatchServerAWSCategory_1.NamirasoftBillWatchServerAWSCategory(this);
@@ -24,7 +24,7 @@ export type AWSFullRow = {
24
24
  next_run_scheduled_at: (Date | null);
25
25
  created_at: Date;
26
26
  updated_at: Date;
27
- aws_rule: AWSRuleRow;
27
+ aws_rule: AWSRuleRow[];
28
28
  aws_category: (EntityCategoryInputRow | null)[];
29
29
  aws_field: (EntityFieldInputRow | null)[];
30
30
  aws_tag: (EntityTagInputRow | null)[];
@@ -22,7 +22,7 @@ export type AzureFullRow = {
22
22
  next_run_scheduled_at: (Date | null);
23
23
  created_at: Date;
24
24
  updated_at: Date;
25
- azure_rule: AzureRuleRow;
25
+ azure_rule: AzureRuleRow[];
26
26
  azure_category: (EntityCategoryInputRow | null)[];
27
27
  azure_field: (EntityFieldInputRow | null)[];
28
28
  azure_tag: (EntityTagInputRow | null)[];
@@ -22,7 +22,7 @@ export type GCPFullRow = {
22
22
  next_run_scheduled_at: (Date | null);
23
23
  created_at: Date;
24
24
  updated_at: Date;
25
- gcp_rule: GCPRuleRow;
25
+ gcp_rule: GCPRuleRow[];
26
26
  gcp_category: (EntityCategoryInputRow | null)[];
27
27
  gcp_field: (EntityFieldInputRow | null)[];
28
28
  gcp_tag: (EntityTagInputRow | null)[];
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "framework": "npm",
9
9
  "application": "package",
10
10
  "private": false,
11
- "version": "1.4.39",
11
+ "version": "1.4.40",
12
12
  "author": "Amir Abolhasani",
13
13
  "license": "MIT",
14
14
  "main": "./dist/index.js",
@@ -61,7 +61,7 @@ export class NamirasoftBillWatchServer extends NSABaseServer
61
61
  rule: NamirasoftBillWatchServerRule;
62
62
  constructor(base_url: string, manager: TokenManager, onError: (error: Error) => void)
63
63
  {
64
- super(base_url, `1.4.39`, manager, onError);
64
+ super(base_url, `1.4.40`, manager, onError);
65
65
  this.healthz = new NamirasoftBillWatchServerHealthz(this);
66
66
  this.value = new NamirasoftBillWatchServerValue(this);
67
67
  this.a_w_s_category = new NamirasoftBillWatchServerAWSCategory(this);
@@ -46,7 +46,7 @@ export type AWSFullRow =
46
46
  next_run_scheduled_at: (Date | null);
47
47
  created_at: Date;
48
48
  updated_at: Date;
49
- aws_rule: AWSRuleRow;
49
+ aws_rule: AWSRuleRow[];
50
50
  aws_category: (EntityCategoryInputRow | null)[];
51
51
  aws_field: (EntityFieldInputRow | null)[];
52
52
  aws_tag: (EntityTagInputRow | null)[];
@@ -44,7 +44,7 @@ export type AzureFullRow =
44
44
  next_run_scheduled_at: (Date | null);
45
45
  created_at: Date;
46
46
  updated_at: Date;
47
- azure_rule: AzureRuleRow;
47
+ azure_rule: AzureRuleRow[];
48
48
  azure_category: (EntityCategoryInputRow | null)[];
49
49
  azure_field: (EntityFieldInputRow | null)[];
50
50
  azure_tag: (EntityTagInputRow | null)[];
@@ -44,7 +44,7 @@ export type GCPFullRow =
44
44
  next_run_scheduled_at: (Date | null);
45
45
  created_at: Date;
46
46
  updated_at: Date;
47
- gcp_rule: GCPRuleRow;
47
+ gcp_rule: GCPRuleRow[];
48
48
  gcp_category: (EntityCategoryInputRow | null)[];
49
49
  gcp_field: (EntityFieldInputRow | null)[];
50
50
  gcp_tag: (EntityTagInputRow | null)[];