Skip to content

Commit

Permalink
skip not fixed paths
Browse files Browse the repository at this point in the history
  • Loading branch information
p-zielinski committed Nov 30, 2023
1 parent 0513b1e commit a43e9b8
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 11 deletions.
22 changes: 11 additions & 11 deletions reference/OpenAPI.json
Original file line number Diff line number Diff line change
Expand Up @@ -20178,7 +20178,7 @@
},
"required": ["object", "data_ref", "redemptions", "total"]
},
"7_filter_conditions_string": {
"FilterConditionsString": {
"title": "Filter by conditions",
"type": "object",
"description": "Data filters used to narrow the data records to be returned in the result.",
Expand Down Expand Up @@ -54145,7 +54145,7 @@
"explode": true,
"properties": {
"conditions": {
"$ref": "#/components/schemas/7_filter_conditions_string"
"$ref": "#/components/schemas/FilterConditionsString"
},
"junction": {
"$ref": "#/components/schemas/Junction"
Expand All @@ -54159,7 +54159,7 @@
"explode": true,
"properties": {
"conditions": {
"$ref": "#/components/schemas/7_filter_conditions_string"
"$ref": "#/components/schemas/FilterConditionsString"
},
"junction": {
"$ref": "#/components/schemas/Junction"
Expand All @@ -54173,7 +54173,7 @@
"explode": true,
"properties": {
"conditions": {
"$ref": "#/components/schemas/7_filter_conditions_string"
"$ref": "#/components/schemas/FilterConditionsString"
},
"junction": {
"$ref": "#/components/schemas/Junction"
Expand All @@ -54187,7 +54187,7 @@
"explode": true,
"properties": {
"conditions": {
"$ref": "#/components/schemas/7_filter_conditions_string"
"$ref": "#/components/schemas/FilterConditionsString"
},
"junction": {
"$ref": "#/components/schemas/Junction"
Expand All @@ -54201,7 +54201,7 @@
"explode": true,
"properties": {
"conditions": {
"$ref": "#/components/schemas/7_filter_conditions_string"
"$ref": "#/components/schemas/FilterConditionsString"
},
"junction": {
"$ref": "#/components/schemas/Junction"
Expand All @@ -54215,7 +54215,7 @@
"explode": true,
"properties": {
"conditions": {
"$ref": "#/components/schemas/7_filter_conditions_string"
"$ref": "#/components/schemas/FilterConditionsString"
},
"junction": {
"$ref": "#/components/schemas/Junction"
Expand All @@ -54229,7 +54229,7 @@
"explode": true,
"properties": {
"conditions": {
"$ref": "#/components/schemas/7_filter_conditions_string"
"$ref": "#/components/schemas/FilterConditionsString"
},
"junction": {
"$ref": "#/components/schemas/Junction"
Expand All @@ -54243,7 +54243,7 @@
"explode": true,
"properties": {
"conditions": {
"$ref": "#/components/schemas/7_filter_conditions_string"
"$ref": "#/components/schemas/FilterConditionsString"
},
"junction": {
"$ref": "#/components/schemas/Junction"
Expand All @@ -54257,7 +54257,7 @@
"explode": true,
"properties": {
"conditions": {
"$ref": "#/components/schemas/7_filter_conditions_string"
"$ref": "#/components/schemas/FilterConditionsString"
},
"junction": {
"$ref": "#/components/schemas/Junction"
Expand All @@ -54271,7 +54271,7 @@
"explode": true,
"properties": {
"conditions": {
"$ref": "#/components/schemas/7_filter_conditions_string"
"$ref": "#/components/schemas/FilterConditionsString"
},
"junction": {
"$ref": "#/components/schemas/Junction"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,34 @@ const skipList: { endpoint: string; methods: string[] | true }[] = [
endpoint: "/v1/metadata-schemas",
methods: true,
},
{
endpoint: "/v1/vouchers/metadata/async",
methods: ["post"],
},
{
endpoint: "/v1/validation-rules/{validationRuleId}/assignments",
methods: ["post"],
},
{
endpoint: "/v1/segments",
methods: ["post"],
},
{
endpoint: "/v1/promotions/tiers",
methods: ["get"],
},
{
endpoint: "/client/v1/promotions/tiers",
methods: ["get"],
},
{
endpoint: "/v1/segments/{segmentId}",
methods: ["get"],
},
{
endpoint: "/v1/segments",
methods: ["post"],
},
];

const main = async (keepIfPropertiesNotPresent) => {
Expand Down

0 comments on commit a43e9b8

Please sign in to comment.