@searchspring/snapi-oas 0.1.25 → 0.1.28

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Snap API OpenAPI Specification v0.1.25
1
+ # Snap API OpenAPI Specification v0.1.28
2
2
 
3
3
  https://searchspring.github.io/snapi-oas/
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@searchspring/snapi-oas",
3
- "version": "0.1.25",
3
+ "version": "0.1.28",
4
4
  "description": "Snap OpenAPI Specification",
5
5
  "author": "Searchspring",
6
6
  "license": "MIT",
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "description" : "Searchspring Snap Search API",
8
8
  "title" : "snAPI",
9
- "version" : "0.1.25",
9
+ "version" : "0.1.28",
10
10
  "x-logo" : {
11
11
  "url" : "./images/searchspring_logo.svg",
12
12
  "altText" : "Searchspring Snap"
@@ -3434,6 +3434,12 @@
3434
3434
  "redirect" : {
3435
3435
  "type" : "string"
3436
3436
  },
3437
+ "campaigns" : {
3438
+ "items" : {
3439
+ "$ref" : "#/components/schemas/SearchResponseModelMerchandising_campaigns"
3440
+ },
3441
+ "type" : "array"
3442
+ },
3437
3443
  "content" : {
3438
3444
  "$ref" : "#/components/schemas/SearchResponseModelMerchandising_content"
3439
3445
  }
@@ -3735,6 +3741,9 @@
3735
3741
  },
3736
3742
  "landingPage" : {
3737
3743
  "type" : "string"
3744
+ },
3745
+ "intellisuggest" : {
3746
+ "type" : "boolean"
3738
3747
  }
3739
3748
  },
3740
3749
  "type" : "object"
@@ -3748,6 +3757,14 @@
3748
3757
  "domain" : {
3749
3758
  "description" : "current website url",
3750
3759
  "type" : "string"
3760
+ },
3761
+ "sessionId" : {
3762
+ "description" : "current session id",
3763
+ "type" : "string"
3764
+ },
3765
+ "pageLoadId" : {
3766
+ "description" : "randomly generated page id",
3767
+ "type" : "string"
3751
3768
  }
3752
3769
  },
3753
3770
  "type" : "object"
@@ -3942,6 +3959,20 @@
3942
3959
  },
3943
3960
  "type" : "object"
3944
3961
  },
3962
+ "SearchResponseModelMerchandising_campaigns" : {
3963
+ "properties" : {
3964
+ "id" : {
3965
+ "type" : "string"
3966
+ },
3967
+ "title" : {
3968
+ "type" : "string"
3969
+ },
3970
+ "type" : {
3971
+ "type" : "string"
3972
+ }
3973
+ },
3974
+ "type" : "object"
3975
+ },
3945
3976
  "SearchResponseModelMerchandising_content_config_position" : {
3946
3977
  "properties" : {
3947
3978
  "index" : {
@@ -4,7 +4,7 @@ info:
4
4
  name: Searchspring
5
5
  description: Searchspring Snap Search API
6
6
  title: snAPI
7
- version: 0.1.25
7
+ version: 0.1.28
8
8
  x-logo:
9
9
  url: ./images/searchspring_logo.svg
10
10
  altText: Searchspring Snap
@@ -2757,6 +2757,7 @@ components:
2757
2757
  - field: field
2758
2758
  direction: asc
2759
2759
  merchandising:
2760
+ intellisuggest: true
2760
2761
  landingPage: landingPage
2761
2762
  disabled: true
2762
2763
  segments:
@@ -2764,6 +2765,8 @@ components:
2764
2765
  - segments
2765
2766
  tracking:
2766
2767
  domain: domain
2768
+ pageLoadId: pageLoadId
2769
+ sessionId: sessionId
2767
2770
  userId: userId
2768
2771
  facets:
2769
2772
  autoDrillDown: true
@@ -2910,6 +2913,13 @@ components:
2910
2913
  id: id
2911
2914
  merchandising:
2912
2915
  redirect: redirect
2916
+ campaigns:
2917
+ - id: id
2918
+ title: title
2919
+ type: type
2920
+ - id: id
2921
+ title: title
2922
+ type: type
2913
2923
  content:
2914
2924
  inline:
2915
2925
  - config:
@@ -3147,6 +3157,13 @@ components:
3147
3157
  SearchResponseModelMerchandising:
3148
3158
  example:
3149
3159
  redirect: redirect
3160
+ campaigns:
3161
+ - id: id
3162
+ title: title
3163
+ type: type
3164
+ - id: id
3165
+ title: title
3166
+ type: type
3150
3167
  content:
3151
3168
  inline:
3152
3169
  - config:
@@ -3172,6 +3189,10 @@ components:
3172
3189
  properties:
3173
3190
  redirect:
3174
3191
  type: string
3192
+ campaigns:
3193
+ items:
3194
+ $ref: '#/components/schemas/SearchResponseModelMerchandising_campaigns'
3195
+ type: array
3175
3196
  content:
3176
3197
  $ref: '#/components/schemas/SearchResponseModelMerchandising_content'
3177
3198
  type: object
@@ -3419,6 +3440,7 @@ components:
3419
3440
  type: object
3420
3441
  SearchRequestModel_merchandising:
3421
3442
  example:
3443
+ intellisuggest: true
3422
3444
  landingPage: landingPage
3423
3445
  disabled: true
3424
3446
  segments:
@@ -3433,10 +3455,14 @@ components:
3433
3455
  type: array
3434
3456
  landingPage:
3435
3457
  type: string
3458
+ intellisuggest:
3459
+ type: boolean
3436
3460
  type: object
3437
3461
  SearchRequestModel_tracking:
3438
3462
  example:
3439
3463
  domain: domain
3464
+ pageLoadId: pageLoadId
3465
+ sessionId: sessionId
3440
3466
  userId: userId
3441
3467
  properties:
3442
3468
  userId:
@@ -3445,6 +3471,12 @@ components:
3445
3471
  domain:
3446
3472
  description: current website url
3447
3473
  type: string
3474
+ sessionId:
3475
+ description: current session id
3476
+ type: string
3477
+ pageLoadId:
3478
+ description: randomly generated page id
3479
+ type: string
3448
3480
  type: object
3449
3481
  SearchRequestModel_personalization:
3450
3482
  example:
@@ -3619,6 +3651,19 @@ components:
3619
3651
  active:
3620
3652
  $ref: '#/components/schemas/SearchRequestModelFilterRange_allOf_value'
3621
3653
  type: object
3654
+ SearchResponseModelMerchandising_campaigns:
3655
+ example:
3656
+ id: id
3657
+ title: title
3658
+ type: type
3659
+ properties:
3660
+ id:
3661
+ type: string
3662
+ title:
3663
+ type: string
3664
+ type:
3665
+ type: string
3666
+ type: object
3622
3667
  SearchResponseModelMerchandising_content_config_position:
3623
3668
  example:
3624
3669
  index: 2.027123023002322