@kard-financial/sdk 31.3.0 → 32.0.0

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.
Files changed (34) hide show
  1. package/dist/cjs/BaseClient.js +2 -2
  2. package/dist/cjs/api/resources/organizations/resources/contentStrategies/client/Client.d.ts +4 -0
  3. package/dist/cjs/api/resources/organizations/resources/contentStrategies/client/Client.js +4 -0
  4. package/dist/cjs/api/resources/organizations/resources/contentStrategies/types/ContentStrategyAttributes.d.ts +2 -0
  5. package/dist/cjs/api/resources/organizations/resources/contentStrategies/types/ContentStrategyFilters.d.ts +14 -0
  6. package/dist/cjs/api/resources/organizations/resources/contentStrategies/types/ContentStrategyFilters.js +3 -0
  7. package/dist/cjs/api/resources/organizations/resources/contentStrategies/types/ContentStrategyResponse.d.ts +3 -0
  8. package/dist/cjs/api/resources/organizations/resources/contentStrategies/types/CreateContentStrategyAttributes.d.ts +5 -0
  9. package/dist/cjs/api/resources/organizations/resources/contentStrategies/types/CreateContentStrategyRequestBody.d.ts +3 -0
  10. package/dist/cjs/api/resources/organizations/resources/contentStrategies/types/OfferFeatures.d.ts +5 -0
  11. package/dist/cjs/api/resources/organizations/resources/contentStrategies/types/OfferFeatures.js +8 -0
  12. package/dist/cjs/api/resources/organizations/resources/contentStrategies/types/UpdateContentStrategyAttributes.d.ts +5 -0
  13. package/dist/cjs/api/resources/organizations/resources/contentStrategies/types/index.d.ts +2 -0
  14. package/dist/cjs/api/resources/organizations/resources/contentStrategies/types/index.js +2 -0
  15. package/dist/cjs/version.d.ts +1 -1
  16. package/dist/cjs/version.js +1 -1
  17. package/dist/esm/BaseClient.mjs +2 -2
  18. package/dist/esm/api/resources/organizations/resources/contentStrategies/client/Client.d.mts +4 -0
  19. package/dist/esm/api/resources/organizations/resources/contentStrategies/client/Client.mjs +4 -0
  20. package/dist/esm/api/resources/organizations/resources/contentStrategies/types/ContentStrategyAttributes.d.mts +2 -0
  21. package/dist/esm/api/resources/organizations/resources/contentStrategies/types/ContentStrategyFilters.d.mts +14 -0
  22. package/dist/esm/api/resources/organizations/resources/contentStrategies/types/ContentStrategyFilters.mjs +2 -0
  23. package/dist/esm/api/resources/organizations/resources/contentStrategies/types/ContentStrategyResponse.d.mts +3 -0
  24. package/dist/esm/api/resources/organizations/resources/contentStrategies/types/CreateContentStrategyAttributes.d.mts +5 -0
  25. package/dist/esm/api/resources/organizations/resources/contentStrategies/types/CreateContentStrategyRequestBody.d.mts +3 -0
  26. package/dist/esm/api/resources/organizations/resources/contentStrategies/types/OfferFeatures.d.mts +5 -0
  27. package/dist/esm/api/resources/organizations/resources/contentStrategies/types/OfferFeatures.mjs +5 -0
  28. package/dist/esm/api/resources/organizations/resources/contentStrategies/types/UpdateContentStrategyAttributes.d.mts +5 -0
  29. package/dist/esm/api/resources/organizations/resources/contentStrategies/types/index.d.mts +2 -0
  30. package/dist/esm/api/resources/organizations/resources/contentStrategies/types/index.mjs +2 -0
  31. package/dist/esm/version.d.mts +1 -1
  32. package/dist/esm/version.mjs +1 -1
  33. package/package.json +1 -1
  34. package/reference.md +4 -0
@@ -43,8 +43,8 @@ function normalizeClientOptions(options) {
43
43
  const headers = (0, headers_js_1.mergeHeaders)({
44
44
  "X-Fern-Language": "JavaScript",
45
45
  "X-Fern-SDK-Name": "@kard-financial/sdk",
46
- "X-Fern-SDK-Version": "31.3.0",
47
- "User-Agent": "@kard-financial/sdk/31.3.0",
46
+ "X-Fern-SDK-Version": "32.0.0",
47
+ "User-Agent": "@kard-financial/sdk/32.0.0",
48
48
  "X-Fern-Runtime": core.RUNTIME.type,
49
49
  "X-Fern-Runtime-Version": core.RUNTIME.version,
50
50
  }, options === null || options === void 0 ? void 0 : options.headers);
@@ -31,6 +31,9 @@ export declare class ContentStrategiesClient {
31
31
  * attributes: {
32
32
  * name: "Featured Travel",
33
33
  * sort: "HIGHEST_CASHBACK",
34
+ * filters: {
35
+ * offerFeatures: ["INTERACTIVE"]
36
+ * },
34
37
  * categories: ["Travel"],
35
38
  * categoryExclusions: ["Gas"],
36
39
  * merchantExclusions: ["merchant-abc"]
@@ -96,6 +99,7 @@ export declare class ContentStrategiesClient {
96
99
  * type: "contentStrategy",
97
100
  * attributes: {
98
101
  * name: "name",
102
+ * filters: {},
99
103
  * categories: ["Arts & Entertainment", "Arts & Entertainment"],
100
104
  * categoryExclusions: ["Arts & Entertainment", "Arts & Entertainment"],
101
105
  * merchantExclusions: ["merchantExclusions", "merchantExclusions"]
@@ -76,6 +76,9 @@ class ContentStrategiesClient {
76
76
  * attributes: {
77
77
  * name: "Featured Travel",
78
78
  * sort: "HIGHEST_CASHBACK",
79
+ * filters: {
80
+ * offerFeatures: ["INTERACTIVE"]
81
+ * },
79
82
  * categories: ["Travel"],
80
83
  * categoryExclusions: ["Gas"],
81
84
  * merchantExclusions: ["merchant-abc"]
@@ -288,6 +291,7 @@ class ContentStrategiesClient {
288
291
  * type: "contentStrategy",
289
292
  * attributes: {
290
293
  * name: "name",
294
+ * filters: {},
291
295
  * categories: ["Arts & Entertainment", "Arts & Entertainment"],
292
296
  * categoryExclusions: ["Arts & Entertainment", "Arts & Entertainment"],
293
297
  * merchantExclusions: ["merchantExclusions", "merchantExclusions"]
@@ -9,6 +9,8 @@ export interface ContentStrategyAttributes {
9
9
  organizationId: string;
10
10
  /** Sort applied when selecting offers for the strategy */
11
11
  sort?: KardApi.organizations.ContentStrategySort | undefined;
12
+ /** Filters applied when selecting offers for the strategy */
13
+ filters: KardApi.organizations.ContentStrategyFilters;
12
14
  /** Merchant categories to include */
13
15
  categories: KardApi.CategoryOption[];
14
16
  /** Merchant categories to exclude */
@@ -0,0 +1,14 @@
1
+ import type * as KardApi from "../../../../../index.js";
2
+ /**
3
+ * Filters applied when selecting offers for a content strategy
4
+ */
5
+ export interface ContentStrategyFilters {
6
+ /** Merchant categories to include */
7
+ categories?: string[] | undefined;
8
+ /** Merchant categories to exclude */
9
+ categoryExclusions?: string[] | undefined;
10
+ /** Merchant IDs to exclude */
11
+ merchantExclusions?: string[] | undefined;
12
+ /** Offer features to filter by */
13
+ offerFeatures?: KardApi.organizations.OfferFeatures[] | undefined;
14
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -10,6 +10,9 @@ import type * as KardApi from "../../../../../index.js";
10
10
  * name: "Featured Travel",
11
11
  * organizationId: "org-123",
12
12
  * sort: KardApi.organizations.ContentStrategySort.HighestCashback,
13
+ * filters: {
14
+ * offerFeatures: [KardApi.organizations.OfferFeatures.Interactive]
15
+ * },
13
16
  * categories: [KardApi.CategoryOption.Travel],
14
17
  * categoryExclusions: [KardApi.CategoryOption.Gas],
15
18
  * merchantExclusions: ["merchant-abc"]
@@ -6,6 +6,9 @@ import type * as KardApi from "../../../../../index.js";
6
6
  * {
7
7
  * name: "Featured Travel",
8
8
  * sort: KardApi.organizations.ContentStrategySort.HighestCashback,
9
+ * filters: {
10
+ * offerFeatures: [KardApi.organizations.OfferFeatures.Interactive]
11
+ * },
9
12
  * categories: [KardApi.CategoryOption.Travel],
10
13
  * categoryExclusions: [KardApi.CategoryOption.Gas],
11
14
  * merchantExclusions: ["merchant-abc"]
@@ -16,6 +19,8 @@ export interface CreateContentStrategyAttributes {
16
19
  name: string;
17
20
  /** Sort applied when selecting offers for the strategy */
18
21
  sort?: KardApi.organizations.ContentStrategySort | undefined;
22
+ /** Filters applied when selecting offers for the strategy */
23
+ filters: KardApi.organizations.ContentStrategyFilters;
19
24
  /** Merchant categories to include */
20
25
  categories: KardApi.CategoryOption[];
21
26
  /** Merchant categories to exclude */
@@ -9,6 +9,9 @@ import type * as KardApi from "../../../../../index.js";
9
9
  * attributes: {
10
10
  * name: "Featured Travel",
11
11
  * sort: KardApi.organizations.ContentStrategySort.HighestCashback,
12
+ * filters: {
13
+ * offerFeatures: [KardApi.organizations.OfferFeatures.Interactive]
14
+ * },
12
15
  * categories: [KardApi.CategoryOption.Travel],
13
16
  * categoryExclusions: [KardApi.CategoryOption.Gas],
14
17
  * merchantExclusions: ["merchant-abc"]
@@ -0,0 +1,5 @@
1
+ /** Offer feature applied to the offers selected by a content strategy. A strategy may have any number of offer features. */
2
+ export declare const OfferFeatures: {
3
+ readonly Interactive: "INTERACTIVE";
4
+ };
5
+ export type OfferFeatures = (typeof OfferFeatures)[keyof typeof OfferFeatures];
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.OfferFeatures = void 0;
5
+ /** Offer feature applied to the offers selected by a content strategy. A strategy may have any number of offer features. */
6
+ exports.OfferFeatures = {
7
+ Interactive: "INTERACTIVE",
8
+ };
@@ -6,6 +6,9 @@ import type * as KardApi from "../../../../../index.js";
6
6
  * {
7
7
  * name: "Updated Travel Strategy",
8
8
  * sort: KardApi.organizations.ContentStrategySort.ExpiringSoon,
9
+ * filters: {
10
+ * offerFeatures: [KardApi.organizations.OfferFeatures.Interactive]
11
+ * },
9
12
  * categories: [KardApi.CategoryOption.Travel, KardApi.CategoryOption.FoodBeverage],
10
13
  * categoryExclusions: [],
11
14
  * merchantExclusions: ["merchant-xyz"]
@@ -16,6 +19,8 @@ export interface UpdateContentStrategyAttributes {
16
19
  name: string;
17
20
  /** Sort applied when selecting offers for the strategy */
18
21
  sort?: KardApi.organizations.ContentStrategySort | undefined;
22
+ /** Filters applied when selecting offers for the strategy */
23
+ filters: KardApi.organizations.ContentStrategyFilters;
19
24
  /** Merchant categories to include */
20
25
  categories: KardApi.CategoryOption[];
21
26
  /** Merchant categories to exclude */
@@ -1,10 +1,12 @@
1
1
  export * from "./ContentStrategyAttributes.js";
2
+ export * from "./ContentStrategyFilters.js";
2
3
  export * from "./ContentStrategyListResponse.js";
3
4
  export * from "./ContentStrategyResponse.js";
4
5
  export * from "./ContentStrategySort.js";
5
6
  export * from "./CreateContentStrategyAttributes.js";
6
7
  export * from "./CreateContentStrategyRequestBody.js";
7
8
  export * from "./CreateContentStrategyRequestData.js";
9
+ export * from "./OfferFeatures.js";
8
10
  export * from "./UpdateContentStrategyAttributes.js";
9
11
  export * from "./UpdateContentStrategyRequestBody.js";
10
12
  export * from "./UpdateContentStrategyRequestData.js";
@@ -15,12 +15,14 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./ContentStrategyAttributes.js"), exports);
18
+ __exportStar(require("./ContentStrategyFilters.js"), exports);
18
19
  __exportStar(require("./ContentStrategyListResponse.js"), exports);
19
20
  __exportStar(require("./ContentStrategyResponse.js"), exports);
20
21
  __exportStar(require("./ContentStrategySort.js"), exports);
21
22
  __exportStar(require("./CreateContentStrategyAttributes.js"), exports);
22
23
  __exportStar(require("./CreateContentStrategyRequestBody.js"), exports);
23
24
  __exportStar(require("./CreateContentStrategyRequestData.js"), exports);
25
+ __exportStar(require("./OfferFeatures.js"), exports);
24
26
  __exportStar(require("./UpdateContentStrategyAttributes.js"), exports);
25
27
  __exportStar(require("./UpdateContentStrategyRequestBody.js"), exports);
26
28
  __exportStar(require("./UpdateContentStrategyRequestData.js"), exports);
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "31.3.0";
1
+ export declare const SDK_VERSION = "32.0.0";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "31.3.0";
4
+ exports.SDK_VERSION = "32.0.0";
@@ -6,8 +6,8 @@ export function normalizeClientOptions(options) {
6
6
  const headers = mergeHeaders({
7
7
  "X-Fern-Language": "JavaScript",
8
8
  "X-Fern-SDK-Name": "@kard-financial/sdk",
9
- "X-Fern-SDK-Version": "31.3.0",
10
- "User-Agent": "@kard-financial/sdk/31.3.0",
9
+ "X-Fern-SDK-Version": "32.0.0",
10
+ "User-Agent": "@kard-financial/sdk/32.0.0",
11
11
  "X-Fern-Runtime": core.RUNTIME.type,
12
12
  "X-Fern-Runtime-Version": core.RUNTIME.version,
13
13
  }, options === null || options === void 0 ? void 0 : options.headers);
@@ -31,6 +31,9 @@ export declare class ContentStrategiesClient {
31
31
  * attributes: {
32
32
  * name: "Featured Travel",
33
33
  * sort: "HIGHEST_CASHBACK",
34
+ * filters: {
35
+ * offerFeatures: ["INTERACTIVE"]
36
+ * },
34
37
  * categories: ["Travel"],
35
38
  * categoryExclusions: ["Gas"],
36
39
  * merchantExclusions: ["merchant-abc"]
@@ -96,6 +99,7 @@ export declare class ContentStrategiesClient {
96
99
  * type: "contentStrategy",
97
100
  * attributes: {
98
101
  * name: "name",
102
+ * filters: {},
99
103
  * categories: ["Arts & Entertainment", "Arts & Entertainment"],
100
104
  * categoryExclusions: ["Arts & Entertainment", "Arts & Entertainment"],
101
105
  * merchantExclusions: ["merchantExclusions", "merchantExclusions"]
@@ -40,6 +40,9 @@ export class ContentStrategiesClient {
40
40
  * attributes: {
41
41
  * name: "Featured Travel",
42
42
  * sort: "HIGHEST_CASHBACK",
43
+ * filters: {
44
+ * offerFeatures: ["INTERACTIVE"]
45
+ * },
43
46
  * categories: ["Travel"],
44
47
  * categoryExclusions: ["Gas"],
45
48
  * merchantExclusions: ["merchant-abc"]
@@ -252,6 +255,7 @@ export class ContentStrategiesClient {
252
255
  * type: "contentStrategy",
253
256
  * attributes: {
254
257
  * name: "name",
258
+ * filters: {},
255
259
  * categories: ["Arts & Entertainment", "Arts & Entertainment"],
256
260
  * categoryExclusions: ["Arts & Entertainment", "Arts & Entertainment"],
257
261
  * merchantExclusions: ["merchantExclusions", "merchantExclusions"]
@@ -9,6 +9,8 @@ export interface ContentStrategyAttributes {
9
9
  organizationId: string;
10
10
  /** Sort applied when selecting offers for the strategy */
11
11
  sort?: KardApi.organizations.ContentStrategySort | undefined;
12
+ /** Filters applied when selecting offers for the strategy */
13
+ filters: KardApi.organizations.ContentStrategyFilters;
12
14
  /** Merchant categories to include */
13
15
  categories: KardApi.CategoryOption[];
14
16
  /** Merchant categories to exclude */
@@ -0,0 +1,14 @@
1
+ import type * as KardApi from "../../../../../index.mjs";
2
+ /**
3
+ * Filters applied when selecting offers for a content strategy
4
+ */
5
+ export interface ContentStrategyFilters {
6
+ /** Merchant categories to include */
7
+ categories?: string[] | undefined;
8
+ /** Merchant categories to exclude */
9
+ categoryExclusions?: string[] | undefined;
10
+ /** Merchant IDs to exclude */
11
+ merchantExclusions?: string[] | undefined;
12
+ /** Offer features to filter by */
13
+ offerFeatures?: KardApi.organizations.OfferFeatures[] | undefined;
14
+ }
@@ -0,0 +1,2 @@
1
+ // This file was auto-generated by Fern from our API Definition.
2
+ export {};
@@ -10,6 +10,9 @@ import type * as KardApi from "../../../../../index.mjs";
10
10
  * name: "Featured Travel",
11
11
  * organizationId: "org-123",
12
12
  * sort: KardApi.organizations.ContentStrategySort.HighestCashback,
13
+ * filters: {
14
+ * offerFeatures: [KardApi.organizations.OfferFeatures.Interactive]
15
+ * },
13
16
  * categories: [KardApi.CategoryOption.Travel],
14
17
  * categoryExclusions: [KardApi.CategoryOption.Gas],
15
18
  * merchantExclusions: ["merchant-abc"]
@@ -6,6 +6,9 @@ import type * as KardApi from "../../../../../index.mjs";
6
6
  * {
7
7
  * name: "Featured Travel",
8
8
  * sort: KardApi.organizations.ContentStrategySort.HighestCashback,
9
+ * filters: {
10
+ * offerFeatures: [KardApi.organizations.OfferFeatures.Interactive]
11
+ * },
9
12
  * categories: [KardApi.CategoryOption.Travel],
10
13
  * categoryExclusions: [KardApi.CategoryOption.Gas],
11
14
  * merchantExclusions: ["merchant-abc"]
@@ -16,6 +19,8 @@ export interface CreateContentStrategyAttributes {
16
19
  name: string;
17
20
  /** Sort applied when selecting offers for the strategy */
18
21
  sort?: KardApi.organizations.ContentStrategySort | undefined;
22
+ /** Filters applied when selecting offers for the strategy */
23
+ filters: KardApi.organizations.ContentStrategyFilters;
19
24
  /** Merchant categories to include */
20
25
  categories: KardApi.CategoryOption[];
21
26
  /** Merchant categories to exclude */
@@ -9,6 +9,9 @@ import type * as KardApi from "../../../../../index.mjs";
9
9
  * attributes: {
10
10
  * name: "Featured Travel",
11
11
  * sort: KardApi.organizations.ContentStrategySort.HighestCashback,
12
+ * filters: {
13
+ * offerFeatures: [KardApi.organizations.OfferFeatures.Interactive]
14
+ * },
12
15
  * categories: [KardApi.CategoryOption.Travel],
13
16
  * categoryExclusions: [KardApi.CategoryOption.Gas],
14
17
  * merchantExclusions: ["merchant-abc"]
@@ -0,0 +1,5 @@
1
+ /** Offer feature applied to the offers selected by a content strategy. A strategy may have any number of offer features. */
2
+ export declare const OfferFeatures: {
3
+ readonly Interactive: "INTERACTIVE";
4
+ };
5
+ export type OfferFeatures = (typeof OfferFeatures)[keyof typeof OfferFeatures];
@@ -0,0 +1,5 @@
1
+ // This file was auto-generated by Fern from our API Definition.
2
+ /** Offer feature applied to the offers selected by a content strategy. A strategy may have any number of offer features. */
3
+ export const OfferFeatures = {
4
+ Interactive: "INTERACTIVE",
5
+ };
@@ -6,6 +6,9 @@ import type * as KardApi from "../../../../../index.mjs";
6
6
  * {
7
7
  * name: "Updated Travel Strategy",
8
8
  * sort: KardApi.organizations.ContentStrategySort.ExpiringSoon,
9
+ * filters: {
10
+ * offerFeatures: [KardApi.organizations.OfferFeatures.Interactive]
11
+ * },
9
12
  * categories: [KardApi.CategoryOption.Travel, KardApi.CategoryOption.FoodBeverage],
10
13
  * categoryExclusions: [],
11
14
  * merchantExclusions: ["merchant-xyz"]
@@ -16,6 +19,8 @@ export interface UpdateContentStrategyAttributes {
16
19
  name: string;
17
20
  /** Sort applied when selecting offers for the strategy */
18
21
  sort?: KardApi.organizations.ContentStrategySort | undefined;
22
+ /** Filters applied when selecting offers for the strategy */
23
+ filters: KardApi.organizations.ContentStrategyFilters;
19
24
  /** Merchant categories to include */
20
25
  categories: KardApi.CategoryOption[];
21
26
  /** Merchant categories to exclude */
@@ -1,10 +1,12 @@
1
1
  export * from "./ContentStrategyAttributes.mjs";
2
+ export * from "./ContentStrategyFilters.mjs";
2
3
  export * from "./ContentStrategyListResponse.mjs";
3
4
  export * from "./ContentStrategyResponse.mjs";
4
5
  export * from "./ContentStrategySort.mjs";
5
6
  export * from "./CreateContentStrategyAttributes.mjs";
6
7
  export * from "./CreateContentStrategyRequestBody.mjs";
7
8
  export * from "./CreateContentStrategyRequestData.mjs";
9
+ export * from "./OfferFeatures.mjs";
8
10
  export * from "./UpdateContentStrategyAttributes.mjs";
9
11
  export * from "./UpdateContentStrategyRequestBody.mjs";
10
12
  export * from "./UpdateContentStrategyRequestData.mjs";
@@ -1,10 +1,12 @@
1
1
  export * from "./ContentStrategyAttributes.mjs";
2
+ export * from "./ContentStrategyFilters.mjs";
2
3
  export * from "./ContentStrategyListResponse.mjs";
3
4
  export * from "./ContentStrategyResponse.mjs";
4
5
  export * from "./ContentStrategySort.mjs";
5
6
  export * from "./CreateContentStrategyAttributes.mjs";
6
7
  export * from "./CreateContentStrategyRequestBody.mjs";
7
8
  export * from "./CreateContentStrategyRequestData.mjs";
9
+ export * from "./OfferFeatures.mjs";
8
10
  export * from "./UpdateContentStrategyAttributes.mjs";
9
11
  export * from "./UpdateContentStrategyRequestBody.mjs";
10
12
  export * from "./UpdateContentStrategyRequestData.mjs";
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "31.3.0";
1
+ export declare const SDK_VERSION = "32.0.0";
@@ -1 +1 @@
1
- export const SDK_VERSION = "31.3.0";
1
+ export const SDK_VERSION = "32.0.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kard-financial/sdk",
3
- "version": "31.3.0",
3
+ "version": "32.0.0",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
package/reference.md CHANGED
@@ -842,6 +842,9 @@ await client.organizations.contentStrategies.create("org-123", {
842
842
  attributes: {
843
843
  name: "Featured Travel",
844
844
  sort: "HIGHEST_CASHBACK",
845
+ filters: {
846
+ offerFeatures: ["INTERACTIVE"]
847
+ },
845
848
  categories: ["Travel"],
846
849
  categoryExclusions: ["Gas"],
847
850
  merchantExclusions: ["merchant-abc"]
@@ -1065,6 +1068,7 @@ await client.organizations.contentStrategies.update("organizationId", "contentSt
1065
1068
  type: "contentStrategy",
1066
1069
  attributes: {
1067
1070
  name: "name",
1071
+ filters: {},
1068
1072
  categories: ["Arts & Entertainment", "Arts & Entertainment"],
1069
1073
  categoryExclusions: ["Arts & Entertainment", "Arts & Entertainment"],
1070
1074
  merchantExclusions: ["merchantExclusions", "merchantExclusions"]