talon_one 5.0.0 → 7.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 (974) hide show
  1. checksums.yaml +4 -4
  2. data/.github/.example/.bundle/config +2 -0
  3. data/.github/.example/Gemfile +6 -0
  4. data/.github/.example/Gemfile.lock +47 -0
  5. data/.github/.example/example.rb +85 -0
  6. data/.github/.example/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/json-2.8.2/gem.build_complete +0 -0
  7. data/.github/.example/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/json-2.8.2/gem_make.out +24 -0
  8. data/.github/.example/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/json-2.8.2/json/ext/generator.bundle +0 -0
  9. data/.github/.example/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/json-2.8.2/json/ext/parser.bundle +0 -0
  10. data/.github/.example/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/json-2.8.2/mkmf.log +177 -0
  11. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/.github/workflows/ruby.yml +41 -0
  12. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/.gitignore +8 -0
  13. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/.rspec +3 -0
  14. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/CHANGELOG.md +375 -0
  15. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/Gemfile +43 -0
  16. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/Guardfile +10 -0
  17. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/LICENSE +20 -0
  18. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/README.md +118 -0
  19. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/Rakefile +40 -0
  20. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/ethon.gemspec +26 -0
  21. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curl.rb +90 -0
  22. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/classes.rb +65 -0
  23. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/codes.rb +122 -0
  24. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/constants.rb +80 -0
  25. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/form_options.rb +37 -0
  26. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/functions.rb +58 -0
  27. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/infos.rb +151 -0
  28. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/messages.rb +19 -0
  29. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/options.rb +503 -0
  30. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/settings.rb +12 -0
  31. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/callbacks.rb +149 -0
  32. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/debug_info.rb +47 -0
  33. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/features.rb +31 -0
  34. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/form.rb +107 -0
  35. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/header.rb +61 -0
  36. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/actionable.rb +157 -0
  37. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/custom.rb +29 -0
  38. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/delete.rb +25 -0
  39. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/get.rb +24 -0
  40. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/head.rb +24 -0
  41. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/options.rb +24 -0
  42. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/patch.rb +24 -0
  43. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/post.rb +26 -0
  44. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/postable.rb +32 -0
  45. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/put.rb +27 -0
  46. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/putable.rb +25 -0
  47. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http.rb +68 -0
  48. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/informations.rb +116 -0
  49. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/mirror.rb +36 -0
  50. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/operations.rb +64 -0
  51. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/options.rb +50 -0
  52. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/params.rb +29 -0
  53. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/queryable.rb +154 -0
  54. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/response_callbacks.rb +136 -0
  55. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/util.rb +28 -0
  56. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy.rb +315 -0
  57. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/ethon_error.rb +9 -0
  58. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/global_init.rb +13 -0
  59. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/invalid_option.rb +13 -0
  60. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/invalid_value.rb +13 -0
  61. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/multi_add.rb +12 -0
  62. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/multi_fdset.rb +12 -0
  63. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/multi_remove.rb +12 -0
  64. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/multi_timeout.rb +13 -0
  65. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/select.rb +13 -0
  66. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors.rb +17 -0
  67. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/libc.rb +21 -0
  68. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/loggable.rb +59 -0
  69. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/multi/operations.rb +228 -0
  70. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/multi/options.rb +117 -0
  71. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/multi/stack.rb +49 -0
  72. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/multi.rb +126 -0
  73. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/version.rb +6 -0
  74. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon.rb +36 -0
  75. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/benchmarks.rb +104 -0
  76. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/memory_leaks.rb +114 -0
  77. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/perf_spec_helper.rb +37 -0
  78. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/support/memory_test_helpers.rb +76 -0
  79. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/support/os_memory_leak_tracker.rb +48 -0
  80. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/support/ruby_object_leak_tracker.rb +49 -0
  81. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/curl_spec.rb +38 -0
  82. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/callbacks_spec.rb +81 -0
  83. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb +54 -0
  84. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/features_spec.rb +24 -0
  85. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/form_spec.rb +104 -0
  86. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/header_spec.rb +79 -0
  87. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/custom_spec.rb +177 -0
  88. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/delete_spec.rb +21 -0
  89. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/get_spec.rb +126 -0
  90. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/head_spec.rb +80 -0
  91. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/options_spec.rb +51 -0
  92. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/patch_spec.rb +51 -0
  93. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/post_spec.rb +317 -0
  94. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/put_spec.rb +168 -0
  95. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http_spec.rb +64 -0
  96. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/informations_spec.rb +126 -0
  97. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/mirror_spec.rb +47 -0
  98. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/operations_spec.rb +271 -0
  99. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/options_spec.rb +193 -0
  100. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/queryable_spec.rb +235 -0
  101. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/response_callbacks_spec.rb +152 -0
  102. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/util_spec.rb +28 -0
  103. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy_spec.rb +203 -0
  104. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/libc_spec.rb +14 -0
  105. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/loggable_spec.rb +22 -0
  106. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/multi/operations_spec.rb +298 -0
  107. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/multi/options_spec.rb +182 -0
  108. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/multi/stack_spec.rb +80 -0
  109. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/multi_spec.rb +152 -0
  110. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/spec_helper.rb +28 -0
  111. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/support/localhost_server.rb +95 -0
  112. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/support/server.rb +115 -0
  113. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/CHANGELOG.md +456 -0
  114. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/COPYING +49 -0
  115. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/Gemfile +21 -0
  116. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/LICENSE +24 -0
  117. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/LICENSE.SPECS +22 -0
  118. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/README.md +137 -0
  119. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/Rakefile +206 -0
  120. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/ffi.gemspec +42 -0
  121. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/2.5/ffi_c.bundle +0 -0
  122. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/2.6/ffi_c.bundle +0 -0
  123. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/2.7/ffi_c.bundle +0 -0
  124. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/3.0/ffi_c.bundle +0 -0
  125. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/3.1/ffi_c.bundle +0 -0
  126. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/3.2/ffi_c.bundle +0 -0
  127. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/3.3/ffi_c.bundle +0 -0
  128. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/abstract_memory.rb +44 -0
  129. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/autopointer.rb +180 -0
  130. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/buffer.rb +4 -0
  131. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/callback.rb +4 -0
  132. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/compat.rb +43 -0
  133. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/data_converter.rb +67 -0
  134. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/dynamic_library.rb +118 -0
  135. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/enum.rb +302 -0
  136. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/errno.rb +43 -0
  137. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/ffi.rb +50 -0
  138. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/function.rb +71 -0
  139. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/io.rb +62 -0
  140. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/library.rb +576 -0
  141. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/library_path.rb +109 -0
  142. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/managedstruct.rb +84 -0
  143. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/memorypointer.rb +1 -0
  144. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
  145. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
  146. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/aarch64-freebsd12/types.conf +181 -0
  147. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/aarch64-linux/types.conf +175 -0
  148. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
  149. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/aarch64-windows/types.conf +52 -0
  150. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/arm-freebsd/types.conf +152 -0
  151. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
  152. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/arm-linux/types.conf +132 -0
  153. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
  154. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
  155. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/i386-cygwin/types.conf +3 -0
  156. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/i386-darwin/types.conf +100 -0
  157. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  158. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
  159. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/i386-gnu/types.conf +107 -0
  160. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/i386-linux/types.conf +103 -0
  161. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  162. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/i386-openbsd/types.conf +128 -0
  163. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/i386-solaris/types.conf +122 -0
  164. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/i386-windows/types.conf +52 -0
  165. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/ia64-linux/types.conf +104 -0
  166. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
  167. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/mips-linux/types.conf +102 -0
  168. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/mips64-linux/types.conf +104 -0
  169. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/mips64el-linux/types.conf +104 -0
  170. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/mipsel-linux/types.conf +102 -0
  171. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/mipsisa32r6-linux/types.conf +102 -0
  172. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/mipsisa32r6el-linux/types.conf +102 -0
  173. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/mipsisa64r6-linux/types.conf +104 -0
  174. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/mipsisa64r6el-linux/types.conf +104 -0
  175. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  176. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  177. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/powerpc-linux/types.conf +130 -0
  178. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
  179. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
  180. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
  181. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/riscv64-linux/types.conf +104 -0
  182. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/s390-linux/types.conf +102 -0
  183. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/s390x-linux/types.conf +102 -0
  184. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/sparc-linux/types.conf +102 -0
  185. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  186. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/sparcv9-linux/types.conf +102 -0
  187. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
  188. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  189. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/sw_64-linux/types.conf +141 -0
  190. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
  191. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/x86_64-darwin/types.conf +130 -0
  192. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
  193. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
  194. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
  195. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
  196. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/x86_64-linux/types.conf +132 -0
  197. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/x86_64-msys/types.conf +119 -0
  198. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
  199. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
  200. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  201. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform/x86_64-windows/types.conf +52 -0
  202. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform.rb +187 -0
  203. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/pointer.rb +167 -0
  204. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/struct.rb +317 -0
  205. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/struct_by_reference.rb +72 -0
  206. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/struct_layout.rb +96 -0
  207. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/struct_layout_builder.rb +227 -0
  208. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/tools/const_generator.rb +232 -0
  209. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/tools/generator.rb +105 -0
  210. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/tools/generator_task.rb +32 -0
  211. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/tools/struct_generator.rb +195 -0
  212. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/tools/types_generator.rb +137 -0
  213. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/types.rb +222 -0
  214. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/union.rb +43 -0
  215. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/variadic.rb +80 -0
  216. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/version.rb +3 -0
  217. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi.rb +27 -0
  218. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/rakelib/ffi_gem_helper.rb +65 -0
  219. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/getlogin.rb +8 -0
  220. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/getpid.rb +8 -0
  221. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/gettimeofday.rb +18 -0
  222. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/hello.rb +8 -0
  223. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/hello_ractor.rb +11 -0
  224. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/inotify.rb +60 -0
  225. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/pty.rb +75 -0
  226. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/qsort.rb +20 -0
  227. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/qsort_ractor.rb +28 -0
  228. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/abstract_memory.rbs +165 -0
  229. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/auto_pointer.rbs +27 -0
  230. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/buffer.rbs +18 -0
  231. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/data_converter.rbs +10 -0
  232. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/dynamic_library.rbs +9 -0
  233. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/enum.rbs +38 -0
  234. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/function.rbs +39 -0
  235. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/library.rbs +42 -0
  236. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/native_type.rbs +86 -0
  237. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/pointer.rbs +42 -0
  238. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/struct.rbs +76 -0
  239. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/struct_by_reference.rbs +11 -0
  240. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/struct_by_value.rbs +7 -0
  241. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/struct_layout.rbs +9 -0
  242. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/struct_layout_builder.rbs +5 -0
  243. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/type.rbs +39 -0
  244. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi.rbs +26 -0
  245. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/BSDL +22 -0
  246. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/CHANGES.md +559 -0
  247. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/COPYING +56 -0
  248. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/LEGAL +60 -0
  249. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/README.md +195 -0
  250. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/fbuffer/fbuffer.h +184 -0
  251. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/generator/Makefile +270 -0
  252. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/generator/extconf.rb +10 -0
  253. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/generator/generator.c +1663 -0
  254. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/parser/Makefile +270 -0
  255. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/parser/extconf.rb +12 -0
  256. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/parser/parser.c +3238 -0
  257. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/parser/parser.rl +1465 -0
  258. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/json.gemspec +64 -0
  259. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/bigdecimal.rb +58 -0
  260. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/complex.rb +51 -0
  261. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/core.rb +12 -0
  262. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/date.rb +54 -0
  263. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/date_time.rb +67 -0
  264. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/exception.rb +49 -0
  265. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/ostruct.rb +54 -0
  266. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/range.rb +54 -0
  267. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/rational.rb +49 -0
  268. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/regexp.rb +48 -0
  269. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/set.rb +48 -0
  270. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/struct.rb +52 -0
  271. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/symbol.rb +47 -0
  272. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/time.rb +52 -0
  273. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/common.rb +876 -0
  274. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/ext/generator/state.rb +105 -0
  275. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/ext/generator.bundle +0 -0
  276. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/ext/parser.bundle +0 -0
  277. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/ext.rb +23 -0
  278. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/generic_object.rb +75 -0
  279. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/truffle_ruby/generator.rb +621 -0
  280. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/version.rb +5 -0
  281. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json.rb +587 -0
  282. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/.github/workflows/ci.yml +30 -0
  283. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/.github/workflows/experimental.yml +33 -0
  284. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/.gitignore +8 -0
  285. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/.rspec +4 -0
  286. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/CHANGELOG.md +410 -0
  287. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/CONTRIBUTING.md +20 -0
  288. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/Gemfile +36 -0
  289. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/Guardfile +9 -0
  290. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/LICENSE +22 -0
  291. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/README.md +588 -0
  292. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/Rakefile +38 -0
  293. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/UPGRADE.md +55 -0
  294. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/rack/typhoeus/middleware/params_decoder/helper.rb +76 -0
  295. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/rack/typhoeus/middleware/params_decoder.rb +57 -0
  296. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/rack/typhoeus.rb +1 -0
  297. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/adapters/faraday.rb +180 -0
  298. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/cache/dalli.rb +28 -0
  299. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/cache/rails.rb +28 -0
  300. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/cache/redis.rb +35 -0
  301. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/config.rb +85 -0
  302. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/easy_factory.rb +206 -0
  303. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/errors/no_stub.rb +12 -0
  304. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/errors/typhoeus_error.rb +8 -0
  305. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/errors.rb +9 -0
  306. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/expectation.rb +217 -0
  307. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/addable.rb +23 -0
  308. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/before.rb +31 -0
  309. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/block_connection.rb +35 -0
  310. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/cacheable.rb +15 -0
  311. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/memoizable.rb +56 -0
  312. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/queueable.rb +83 -0
  313. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/runnable.rb +19 -0
  314. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/stubbable.rb +28 -0
  315. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra.rb +95 -0
  316. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/pool.rb +70 -0
  317. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/railtie.rb +12 -0
  318. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/actions.rb +125 -0
  319. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/before.rb +30 -0
  320. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/block_connection.rb +52 -0
  321. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/cacheable.rb +38 -0
  322. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/callbacks.rb +151 -0
  323. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/marshal.rb +22 -0
  324. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/memoizable.rb +38 -0
  325. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/operations.rb +40 -0
  326. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/responseable.rb +29 -0
  327. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/streamable.rb +34 -0
  328. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/stubbable.rb +30 -0
  329. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request.rb +223 -0
  330. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/response/cacheable.rb +14 -0
  331. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/response/header.rb +105 -0
  332. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/response/informations.rb +305 -0
  333. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/response/status.rb +106 -0
  334. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/response.rb +68 -0
  335. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/version.rb +5 -0
  336. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus.rb +143 -0
  337. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/perf/profile.rb +14 -0
  338. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/perf/vs_nethttp.rb +64 -0
  339. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/rack/typhoeus/middleware/params_decoder/helper_spec.rb +156 -0
  340. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/rack/typhoeus/middleware/params_decoder_spec.rb +31 -0
  341. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/spec_helper.rb +29 -0
  342. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/support/localhost_server.rb +94 -0
  343. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/support/memory_cache.rb +15 -0
  344. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/support/server.rb +116 -0
  345. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/adapters/faraday_spec.rb +339 -0
  346. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/cache/dalli_spec.rb +41 -0
  347. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/cache/redis_spec.rb +41 -0
  348. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/config_spec.rb +15 -0
  349. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/easy_factory_spec.rb +143 -0
  350. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/errors/no_stub_spec.rb +13 -0
  351. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/expectation_spec.rb +280 -0
  352. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/addable_spec.rb +22 -0
  353. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/before_spec.rb +98 -0
  354. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/block_connection_spec.rb +18 -0
  355. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/cacheable_spec.rb +88 -0
  356. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/memoizable_spec.rb +53 -0
  357. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/queueable_spec.rb +98 -0
  358. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/runnable_spec.rb +137 -0
  359. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/stubbable_spec.rb +48 -0
  360. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra_spec.rb +22 -0
  361. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/pool_spec.rb +137 -0
  362. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/actions_spec.rb +19 -0
  363. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/before_spec.rb +93 -0
  364. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/block_connection_spec.rb +75 -0
  365. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/cacheable_spec.rb +94 -0
  366. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/callbacks_spec.rb +91 -0
  367. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/marshal_spec.rb +60 -0
  368. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/memoizable_spec.rb +34 -0
  369. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/operations_spec.rb +101 -0
  370. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/responseable_spec.rb +13 -0
  371. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/stubbable_spec.rb +45 -0
  372. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request_spec.rb +256 -0
  373. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/response/header_spec.rb +147 -0
  374. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/response/informations_spec.rb +323 -0
  375. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/response/status_spec.rb +256 -0
  376. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/response_spec.rb +100 -0
  377. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus_spec.rb +105 -0
  378. data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/typhoeus.gemspec +25 -0
  379. data/.github/.example/vendor/bundle/ruby/3.3.0/specifications/ethon-0.16.0.gemspec +24 -0
  380. data/.github/.example/vendor/bundle/ruby/3.3.0/specifications/ffi-1.17.0-arm64-darwin.gemspec +31 -0
  381. data/.github/.example/vendor/bundle/ruby/3.3.0/specifications/json-2.8.2.gemspec +0 -0
  382. data/.github/.example/vendor/bundle/ruby/3.3.0/specifications/typhoeus-1.4.1.gemspec +24 -0
  383. data/.github/dependabot.yml +10 -0
  384. data/.github/workflows/test.yml +75 -0
  385. data/README.md +565 -521
  386. data/docker-compose.yml +47 -0
  387. data/docs/AccountAnalytics.md +1 -1
  388. data/docs/Achievement.md +8 -0
  389. data/docs/AchievementProgress.md +2 -0
  390. data/docs/AdditionalCampaignProperties.md +4 -2
  391. data/docs/AnalyticsDataPoint.md +19 -0
  392. data/docs/AnalyticsDataPointWithTrend.md +19 -0
  393. data/docs/AnalyticsDataPointWithTrendAndInfluencedRate.md +21 -0
  394. data/docs/AnalyticsDataPointWithTrendAndUplift.md +21 -0
  395. data/docs/AnalyticsProduct.md +23 -0
  396. data/docs/AnalyticsProductSKU.md +21 -0
  397. data/docs/Application.md +4 -0
  398. data/docs/ApplicationAnalyticsDataPoint.md +6 -6
  399. data/docs/ApplicationCIF.md +33 -0
  400. data/docs/ApplicationCIFExpression.md +27 -0
  401. data/docs/ApplicationCampaignAnalytics.md +13 -19
  402. data/docs/ApplicationCampaignStats.md +3 -3
  403. data/docs/ApplicationCustomer.md +8 -8
  404. data/docs/ApplicationSession.md +2 -2
  405. data/docs/AsyncCouponDeletionJobResponse.md +17 -0
  406. data/docs/AudienceCustomer.md +2 -2
  407. data/docs/BaseLoyaltyProgram.md +10 -4
  408. data/docs/BaseNotification.md +1 -1
  409. data/docs/BaseNotificationEntity.md +1 -1
  410. data/docs/BulkOperationOnCampaigns.md +3 -1
  411. data/docs/Campaign.md +18 -2
  412. data/docs/CampaignCollectionEditedNotification.md +21 -0
  413. data/docs/CampaignNotificationPolicy.md +3 -1
  414. data/docs/CampaignStateChangedNotification.md +2 -2
  415. data/docs/CampaignStoreBudget.md +25 -0
  416. data/docs/CampaignTemplate.md +3 -1
  417. data/docs/CampaignTemplateCouponReservationSettings.md +19 -0
  418. data/docs/CampaignVersions.md +29 -0
  419. data/docs/CardAddedDeductedPointsNotificationPolicy.md +19 -0
  420. data/docs/CartItem.md +1 -1
  421. data/docs/Change.md +1 -1
  422. data/docs/CodeGeneratorSettings.md +1 -1
  423. data/docs/Coupon.md +1 -1
  424. data/docs/CouponConstraints.md +1 -1
  425. data/docs/CouponCreationJob.md +1 -1
  426. data/docs/CouponDeletionFilters.md +43 -0
  427. data/docs/CouponDeletionJob.md +39 -0
  428. data/docs/CreateAchievement.md +9 -1
  429. data/docs/CustomerProfile.md +2 -2
  430. data/docs/CustomerProfileAudienceRequestItem.md +1 -1
  431. data/docs/CustomerSession.md +1 -1
  432. data/docs/CustomerSessionV2.md +10 -8
  433. data/docs/Effect.md +8 -0
  434. data/docs/EffectEntity.md +9 -1
  435. data/docs/Environment.md +3 -1
  436. data/docs/Event.md +1 -1
  437. data/docs/FeatureFlag.md +1 -1
  438. data/docs/GenerateCampaignDescription.md +19 -0
  439. data/docs/GenerateCampaignTags.md +17 -0
  440. data/docs/GenerateItemFilterDescription.md +17 -0
  441. data/docs/GenerateLoyaltyCard.md +21 -0
  442. data/docs/GenerateRuleTitle.md +19 -0
  443. data/docs/GenerateRuleTitleRule.md +19 -0
  444. data/docs/IncreaseAchievementProgressEffectProps.md +1 -1
  445. data/docs/InlineResponse20020.md +1 -1
  446. data/docs/InlineResponse20021.md +4 -2
  447. data/docs/InlineResponse20022.md +3 -3
  448. data/docs/InlineResponse20023.md +1 -1
  449. data/docs/InlineResponse20024.md +1 -3
  450. data/docs/InlineResponse20025.md +1 -1
  451. data/docs/InlineResponse20026.md +2 -2
  452. data/docs/InlineResponse20027.md +2 -2
  453. data/docs/InlineResponse20028.md +3 -3
  454. data/docs/InlineResponse20029.md +5 -3
  455. data/docs/InlineResponse20030.md +1 -3
  456. data/docs/InlineResponse20031.md +1 -1
  457. data/docs/InlineResponse20032.md +3 -1
  458. data/docs/InlineResponse20033.md +3 -5
  459. data/docs/InlineResponse20034.md +5 -3
  460. data/docs/InlineResponse20035.md +3 -5
  461. data/docs/InlineResponse20036.md +1 -1
  462. data/docs/InlineResponse20037.md +1 -1
  463. data/docs/InlineResponse20038.md +1 -1
  464. data/docs/InlineResponse20039.md +1 -1
  465. data/docs/InlineResponse20040.md +1 -1
  466. data/docs/InlineResponse20041.md +4 -2
  467. data/docs/InlineResponse20042.md +2 -4
  468. data/docs/InlineResponse20043.md +1 -1
  469. data/docs/InlineResponse20044.md +5 -3
  470. data/docs/InlineResponse20045.md +1 -3
  471. data/docs/InlineResponse20046.md +3 -3
  472. data/docs/IntegrationApi.md +73 -12
  473. data/docs/IntegrationCoupon.md +1 -1
  474. data/docs/IntegrationCustomerSessionResponse.md +1 -1
  475. data/docs/InventoryCoupon.md +1 -1
  476. data/docs/InventoryReferral.md +1 -1
  477. data/docs/LedgerInfo.md +2 -2
  478. data/docs/ListCampaignStoreBudgets.md +23 -0
  479. data/docs/ListCampaignStoreBudgetsStore.md +21 -0
  480. data/docs/LoyaltyBalanceWithTier.md +31 -0
  481. data/docs/LoyaltyBalancesWithTiers.md +19 -0
  482. data/docs/LoyaltyCard.md +10 -2
  483. data/docs/LoyaltyCardBatch.md +23 -0
  484. data/docs/LoyaltyCardBatchResponse.md +19 -0
  485. data/docs/LoyaltyLedger.md +1 -1
  486. data/docs/LoyaltyMembership.md +1 -1
  487. data/docs/LoyaltyProgram.md +19 -9
  488. data/docs/LoyaltyProgramBalance.md +2 -2
  489. data/docs/LoyaltyProgramEntity.md +5 -1
  490. data/docs/LoyaltyTier.md +6 -2
  491. data/docs/ManagementApi.md +1159 -258
  492. data/docs/MessageLogEntry.md +10 -2
  493. data/docs/MessageLogResponse.md +3 -3
  494. data/docs/NewAppWideCouponDeletionJob.md +19 -0
  495. data/docs/NewApplication.md +3 -1
  496. data/docs/NewApplicationCIF.md +27 -0
  497. data/docs/NewApplicationCIFExpression.md +21 -0
  498. data/docs/NewBaseNotification.md +1 -1
  499. data/docs/NewCampaignStoreBudget.md +21 -0
  500. data/docs/NewCampaignStoreBudgetStoreLimit.md +19 -0
  501. data/docs/NewCampaignTemplate.md +2 -0
  502. data/docs/NewCouponCreationJob.md +1 -1
  503. data/docs/NewCouponDeletionJob.md +17 -0
  504. data/docs/NewCoupons.md +1 -1
  505. data/docs/NewCouponsForMultipleRecipients.md +1 -1
  506. data/docs/NewCustomerSessionV2.md +4 -4
  507. data/docs/NewLoyaltyProgram.md +10 -4
  508. data/docs/NewLoyaltyTier.md +2 -2
  509. data/docs/NewOutgoingIntegrationWebhook.md +2 -0
  510. data/docs/NewPicklist.md +1 -1
  511. data/docs/NewReferral.md +1 -1
  512. data/docs/NewReferralsForMultipleAdvocates.md +1 -1
  513. data/docs/NewRevisionVersion.md +37 -0
  514. data/docs/NewWebhook.md +3 -1
  515. data/docs/OktaEvent.md +19 -0
  516. data/docs/OktaEventPayload.md +17 -0
  517. data/docs/OktaEventPayloadData.md +17 -0
  518. data/docs/OktaEventTarget.md +21 -0
  519. data/docs/Picklist.md +1 -1
  520. data/docs/Product.md +1 -1
  521. data/docs/ProductSearchMatch.md +21 -0
  522. data/docs/ProductSkuUnitAnalytics.md +23 -0
  523. data/docs/ProductUnitAnalytics.md +25 -0
  524. data/docs/ProjectedTier.md +21 -0
  525. data/docs/Referral.md +1 -1
  526. data/docs/ReferralConstraints.md +1 -1
  527. data/docs/RejectCouponEffectProps.md +3 -1
  528. data/docs/RejectReferralEffectProps.md +3 -1
  529. data/docs/Revision.md +35 -0
  530. data/docs/RevisionActivation.md +17 -0
  531. data/docs/RevisionVersion.md +53 -0
  532. data/docs/RollbackIncreasedAchievementProgressEffectProps.md +27 -0
  533. data/docs/RuleFailureReason.md +5 -1
  534. data/docs/SSOConfig.md +3 -1
  535. data/docs/ScimBaseUser.md +23 -0
  536. data/docs/ScimBaseUserName.md +17 -0
  537. data/docs/ScimNewUser.md +23 -0
  538. data/docs/ScimPatchOperation.md +21 -0
  539. data/docs/ScimPatchRequest.md +19 -0
  540. data/docs/ScimResource.md +21 -0
  541. data/docs/ScimResourceTypesListResponse.md +17 -0
  542. data/docs/ScimSchemaResource.md +23 -0
  543. data/docs/ScimSchemasListResponse.md +21 -0
  544. data/docs/ScimServiceProviderConfigResponse.md +29 -0
  545. data/docs/ScimServiceProviderConfigResponseBulk.md +21 -0
  546. data/docs/ScimServiceProviderConfigResponseChangePassword.md +17 -0
  547. data/docs/ScimServiceProviderConfigResponseFilter.md +19 -0
  548. data/docs/ScimServiceProviderConfigResponsePatch.md +17 -0
  549. data/docs/ScimServiceProviderConfigResponseSort.md +17 -0
  550. data/docs/ScimUser.md +25 -0
  551. data/docs/ScimUsersListResponse.md +21 -0
  552. data/docs/Store.md +2 -2
  553. data/docs/StrikethroughDebugResponse.md +19 -0
  554. data/docs/SummaryCampaignStoreBudget.md +21 -0
  555. data/docs/TemplateArgDef.md +2 -0
  556. data/docs/Tier.md +3 -1
  557. data/docs/TransferLoyaltyCard.md +3 -1
  558. data/docs/UpdateAchievement.md +9 -1
  559. data/docs/UpdateApplication.md +5 -1
  560. data/docs/UpdateApplicationCIF.md +23 -0
  561. data/docs/UpdateCampaign.md +1 -1
  562. data/docs/UpdateCampaignTemplate.md +2 -0
  563. data/docs/UpdateCoupon.md +1 -1
  564. data/docs/UpdateCouponBatch.md +1 -1
  565. data/docs/UpdateLoyaltyCard.md +4 -2
  566. data/docs/UpdateLoyaltyProgram.md +10 -4
  567. data/docs/UpdateLoyaltyProgramTier.md +21 -0
  568. data/docs/UpdatePicklist.md +1 -1
  569. data/docs/UpdateReferral.md +1 -1
  570. data/docs/UpdateReferralBatch.md +1 -1
  571. data/docs/User.md +4 -2
  572. data/docs/ValueMap.md +23 -0
  573. data/docs/Webhook.md +3 -1
  574. data/docs/WebhookLogEntry.md +1 -1
  575. data/docs/WebhookWithOutgoingIntegrationDetails.md +3 -1
  576. data/lib/talon_one/api/integration_api.rb +94 -18
  577. data/lib/talon_one/api/management_api.rb +1347 -387
  578. data/lib/talon_one/models/account.rb +0 -1
  579. data/lib/talon_one/models/account_additional_cost.rb +0 -1
  580. data/lib/talon_one/models/achievement.rb +87 -2
  581. data/lib/talon_one/models/achievement_progress.rb +16 -1
  582. data/lib/talon_one/models/add_loyalty_points_effect_props.rb +11 -0
  583. data/lib/talon_one/models/additional_campaign_properties.rb +22 -7
  584. data/lib/talon_one/models/analytics_data_point.rb +225 -0
  585. data/lib/talon_one/models/analytics_data_point_with_trend.rb +225 -0
  586. data/lib/talon_one/models/analytics_data_point_with_trend_and_influenced_rate.rb +239 -0
  587. data/lib/talon_one/models/analytics_data_point_with_trend_and_uplift.rb +239 -0
  588. data/lib/talon_one/models/analytics_product.rb +252 -0
  589. data/lib/talon_one/models/analytics_product_sku.rb +242 -0
  590. data/lib/talon_one/models/application.rb +21 -2
  591. data/lib/talon_one/models/application_analytics_data_point.rb +14 -4
  592. data/lib/talon_one/models/application_api_key.rb +0 -1
  593. data/lib/talon_one/models/application_campaign_analytics.rb +39 -41
  594. data/lib/talon_one/models/application_campaign_stats.rb +16 -16
  595. data/lib/talon_one/models/application_cif.rb +307 -0
  596. data/lib/talon_one/models/application_cif_expression.rb +274 -0
  597. data/lib/talon_one/models/application_customer.rb +4 -5
  598. data/lib/talon_one/models/application_event.rb +0 -1
  599. data/lib/talon_one/models/application_referee.rb +0 -1
  600. data/lib/talon_one/models/application_session.rb +1 -2
  601. data/lib/talon_one/models/async_coupon_deletion_job_response.rb +212 -0
  602. data/lib/talon_one/models/attribute.rb +2 -3
  603. data/lib/talon_one/models/audience.rb +0 -1
  604. data/lib/talon_one/models/audience_customer.rb +1 -2
  605. data/lib/talon_one/models/base_loyalty_program.rb +62 -21
  606. data/lib/talon_one/models/base_notification.rb +3 -3
  607. data/lib/talon_one/models/base_notification_entity.rb +1 -0
  608. data/lib/talon_one/models/base_notification_webhook.rb +0 -1
  609. data/lib/talon_one/models/bulk_operation_on_campaigns.rb +16 -6
  610. data/lib/talon_one/models/campaign.rb +106 -8
  611. data/lib/talon_one/models/campaign_analytics.rb +0 -1
  612. data/lib/talon_one/models/campaign_collection.rb +0 -1
  613. data/lib/talon_one/models/campaign_collection_edited_notification.rb +235 -0
  614. data/lib/talon_one/models/campaign_collection_without_payload.rb +0 -1
  615. data/lib/talon_one/models/campaign_evaluation_group.rb +0 -1
  616. data/lib/talon_one/models/campaign_group.rb +0 -1
  617. data/lib/talon_one/models/campaign_notification_policy.rb +16 -4
  618. data/lib/talon_one/models/campaign_set.rb +0 -1
  619. data/lib/talon_one/models/campaign_state_changed_notification.rb +2 -2
  620. data/lib/talon_one/models/campaign_store_budget.rb +274 -0
  621. data/lib/talon_one/models/campaign_template.rb +10 -2
  622. data/lib/talon_one/models/campaign_template_coupon_reservation_settings.rb +243 -0
  623. data/lib/talon_one/models/campaign_versions.rb +303 -0
  624. data/lib/talon_one/models/card_added_deducted_points_notification_policy.rb +269 -0
  625. data/lib/talon_one/models/card_ledger_transaction_log_entry.rb +11 -0
  626. data/lib/talon_one/models/card_ledger_transaction_log_entry_integration_api.rb +11 -0
  627. data/lib/talon_one/models/cart_item.rb +1 -1
  628. data/lib/talon_one/models/catalog.rb +0 -1
  629. data/lib/talon_one/models/catalog_item.rb +0 -1
  630. data/lib/talon_one/models/change.rb +0 -1
  631. data/lib/talon_one/models/code_generator_settings.rb +12 -1
  632. data/lib/talon_one/models/collection.rb +0 -1
  633. data/lib/talon_one/models/collection_item.rb +0 -1
  634. data/lib/talon_one/models/collection_without_payload.rb +0 -1
  635. data/lib/talon_one/models/coupon.rb +1 -2
  636. data/lib/talon_one/models/coupon_constraints.rb +1 -1
  637. data/lib/talon_one/models/coupon_creation_job.rb +1 -2
  638. data/lib/talon_one/models/coupon_deletion_filters.rb +373 -0
  639. data/lib/talon_one/models/coupon_deletion_job.rb +369 -0
  640. data/lib/talon_one/models/create_achievement.rb +90 -4
  641. data/lib/talon_one/models/custom_effect.rb +0 -1
  642. data/lib/talon_one/models/customer_profile.rb +1 -2
  643. data/lib/talon_one/models/customer_profile_audience_request_item.rb +1 -1
  644. data/lib/talon_one/models/customer_profile_integration_request_v2.rb +1 -1
  645. data/lib/talon_one/models/customer_session.rb +0 -1
  646. data/lib/talon_one/models/customer_session_v2.rb +20 -10
  647. data/lib/talon_one/models/deactivate_user_request.rb +0 -1
  648. data/lib/talon_one/models/deduct_loyalty_points_effect_props.rb +11 -0
  649. data/lib/talon_one/models/effect.rb +42 -2
  650. data/lib/talon_one/models/effect_entity.rb +44 -4
  651. data/lib/talon_one/models/environment.rb +16 -5
  652. data/lib/talon_one/models/event.rb +0 -6
  653. data/lib/talon_one/models/event_type.rb +0 -1
  654. data/lib/talon_one/models/event_v2.rb +0 -1
  655. data/lib/talon_one/models/export.rb +0 -1
  656. data/lib/talon_one/models/features_feed.rb +0 -1
  657. data/lib/talon_one/models/generate_campaign_description.rb +227 -0
  658. data/lib/talon_one/models/generate_campaign_tags.rb +212 -0
  659. data/lib/talon_one/models/generate_item_filter_description.rb +214 -0
  660. data/lib/talon_one/models/generate_loyalty_card.rb +292 -0
  661. data/lib/talon_one/models/generate_rule_title.rb +226 -0
  662. data/lib/talon_one/models/generate_rule_title_rule.rb +221 -0
  663. data/lib/talon_one/models/giveaway.rb +0 -1
  664. data/lib/talon_one/models/import.rb +0 -1
  665. data/lib/talon_one/models/increase_achievement_progress_effect_props.rb +1 -1
  666. data/lib/talon_one/models/inline_response20020.rb +1 -1
  667. data/lib/talon_one/models/inline_response20021.rb +11 -7
  668. data/lib/talon_one/models/inline_response20022.rb +10 -10
  669. data/lib/talon_one/models/inline_response20023.rb +1 -1
  670. data/lib/talon_one/models/inline_response20024.rb +6 -10
  671. data/lib/talon_one/models/inline_response20025.rb +1 -1
  672. data/lib/talon_one/models/inline_response20026.rb +1 -6
  673. data/lib/talon_one/models/inline_response20027.rb +6 -1
  674. data/lib/talon_one/models/inline_response20028.rb +11 -11
  675. data/lib/talon_one/models/inline_response20029.rb +11 -7
  676. data/lib/talon_one/models/inline_response20030.rb +2 -11
  677. data/lib/talon_one/models/inline_response20031.rb +1 -1
  678. data/lib/talon_one/models/inline_response20032.rb +11 -2
  679. data/lib/talon_one/models/inline_response20033.rb +7 -11
  680. data/lib/talon_one/models/inline_response20034.rb +11 -7
  681. data/lib/talon_one/models/inline_response20035.rb +7 -11
  682. data/lib/talon_one/models/inline_response20036.rb +1 -1
  683. data/lib/talon_one/models/inline_response20037.rb +1 -1
  684. data/lib/talon_one/models/inline_response20038.rb +1 -1
  685. data/lib/talon_one/models/inline_response20039.rb +1 -1
  686. data/lib/talon_one/models/inline_response20040.rb +1 -1
  687. data/lib/talon_one/models/inline_response20041.rb +11 -7
  688. data/lib/talon_one/models/inline_response20042.rb +7 -11
  689. data/lib/talon_one/models/inline_response20043.rb +1 -1
  690. data/lib/talon_one/models/inline_response20044.rb +11 -7
  691. data/lib/talon_one/models/inline_response20045.rb +2 -11
  692. data/lib/talon_one/models/inline_response20046.rb +6 -1
  693. data/lib/talon_one/models/integration_coupon.rb +1 -2
  694. data/lib/talon_one/models/integration_customer_session_response.rb +1 -0
  695. data/lib/talon_one/models/integration_event.rb +0 -1
  696. data/lib/talon_one/models/integration_event_v2_request.rb +0 -1
  697. data/lib/talon_one/models/inventory_coupon.rb +1 -2
  698. data/lib/talon_one/models/inventory_referral.rb +1 -2
  699. data/lib/talon_one/models/item_attribute.rb +0 -1
  700. data/lib/talon_one/models/ledger_entry.rb +1 -1
  701. data/lib/talon_one/models/ledger_info.rb +3 -3
  702. data/lib/talon_one/models/library_attribute.rb +0 -1
  703. data/lib/talon_one/models/limit_counter.rb +0 -1
  704. data/lib/talon_one/models/list_campaign_store_budgets.rb +248 -0
  705. data/lib/talon_one/models/list_campaign_store_budgets_store.rb +239 -0
  706. data/lib/talon_one/models/login_params.rb +0 -1
  707. data/lib/talon_one/models/loyalty_balance_with_tier.rb +276 -0
  708. data/lib/talon_one/models/loyalty_balances_with_tiers.rb +219 -0
  709. data/lib/talon_one/models/loyalty_card.rb +78 -6
  710. data/lib/talon_one/models/loyalty_card_balances.rb +1 -1
  711. data/lib/talon_one/models/loyalty_card_batch.rb +312 -0
  712. data/lib/talon_one/models/loyalty_card_batch_response.rb +227 -0
  713. data/lib/talon_one/models/loyalty_program.rb +90 -27
  714. data/lib/talon_one/models/loyalty_program_balance.rb +2 -2
  715. data/lib/talon_one/models/loyalty_program_entity.rb +24 -4
  716. data/lib/talon_one/models/loyalty_program_transaction.rb +11 -0
  717. data/lib/talon_one/models/loyalty_tier.rb +24 -4
  718. data/lib/talon_one/models/management_key.rb +0 -1
  719. data/lib/talon_one/models/message_log_entry.rb +67 -7
  720. data/lib/talon_one/models/message_log_response.rb +3 -22
  721. data/lib/talon_one/models/model_return.rb +0 -1
  722. data/lib/talon_one/models/multiple_audiences_item.rb +0 -1
  723. data/lib/talon_one/models/multiple_customer_profile_integration_request_item.rb +1 -1
  724. data/lib/talon_one/models/new_account_sign_up.rb +0 -1
  725. data/lib/talon_one/models/new_additional_cost.rb +0 -1
  726. data/lib/talon_one/models/new_app_wide_coupon_deletion_job.rb +227 -0
  727. data/lib/talon_one/models/new_application.rb +14 -4
  728. data/lib/talon_one/models/new_application_api_key.rb +0 -1
  729. data/lib/talon_one/models/new_application_cif.rb +262 -0
  730. data/lib/talon_one/models/new_application_cif_expression.rb +229 -0
  731. data/lib/talon_one/models/new_attribute.rb +2 -3
  732. data/lib/talon_one/models/new_audience.rb +0 -1
  733. data/lib/talon_one/models/new_base_notification.rb +1 -1
  734. data/lib/talon_one/models/new_campaign.rb +0 -1
  735. data/lib/talon_one/models/new_campaign_collection.rb +0 -1
  736. data/lib/talon_one/models/new_campaign_set.rb +0 -1
  737. data/lib/talon_one/models/new_campaign_store_budget.rb +283 -0
  738. data/lib/talon_one/models/new_campaign_store_budget_store_limit.rb +227 -0
  739. data/lib/talon_one/models/new_campaign_template.rb +10 -1
  740. data/lib/talon_one/models/new_catalog.rb +0 -1
  741. data/lib/talon_one/models/new_collection.rb +0 -1
  742. data/lib/talon_one/models/new_coupon_creation_job.rb +1 -2
  743. data/lib/talon_one/models/new_coupon_deletion_job.rb +211 -0
  744. data/lib/talon_one/models/new_coupons.rb +1 -2
  745. data/lib/talon_one/models/new_coupons_for_multiple_recipients.rb +1 -2
  746. data/lib/talon_one/models/new_custom_effect.rb +0 -1
  747. data/lib/talon_one/models/new_customer_session.rb +0 -1
  748. data/lib/talon_one/models/new_customer_session_v2.rb +3 -3
  749. data/lib/talon_one/models/new_event.rb +0 -1
  750. data/lib/talon_one/models/new_event_type.rb +0 -1
  751. data/lib/talon_one/models/new_loyalty_program.rb +63 -22
  752. data/lib/talon_one/models/new_loyalty_tier.rb +2 -2
  753. data/lib/talon_one/models/new_management_key.rb +0 -1
  754. data/lib/talon_one/models/new_multiple_audiences_item.rb +0 -1
  755. data/lib/talon_one/models/new_notification_test.rb +2 -2
  756. data/lib/talon_one/models/new_outgoing_integration_webhook.rb +11 -1
  757. data/lib/talon_one/models/new_referral.rb +1 -2
  758. data/lib/talon_one/models/new_referrals_for_multiple_advocates.rb +1 -2
  759. data/lib/talon_one/models/new_revision_version.rb +352 -0
  760. data/lib/talon_one/models/new_role.rb +0 -1
  761. data/lib/talon_one/models/new_role_v2.rb +0 -1
  762. data/lib/talon_one/models/new_saml_connection.rb +1 -1
  763. data/lib/talon_one/models/new_store.rb +0 -1
  764. data/lib/talon_one/models/new_user.rb +0 -1
  765. data/lib/talon_one/models/new_webhook.rb +12 -3
  766. data/lib/talon_one/models/okta_event.rb +229 -0
  767. data/lib/talon_one/models/okta_event_payload.rb +212 -0
  768. data/lib/talon_one/models/okta_event_payload_data.rb +214 -0
  769. data/lib/talon_one/models/okta_event_target.rb +243 -0
  770. data/lib/talon_one/models/outgoing_integration_template_with_configuration_details.rb +0 -1
  771. data/lib/talon_one/models/picklist.rb +0 -1
  772. data/lib/talon_one/models/product.rb +1 -1
  773. data/lib/talon_one/models/product_search_match.rb +237 -0
  774. data/lib/talon_one/models/product_sku_unit_analytics.rb +256 -0
  775. data/lib/talon_one/models/product_unit_analytics.rb +271 -0
  776. data/lib/talon_one/models/projected_tier.rb +232 -0
  777. data/lib/talon_one/models/referral.rb +1 -2
  778. data/lib/talon_one/models/referral_constraints.rb +1 -1
  779. data/lib/talon_one/models/reject_coupon_effect_props.rb +14 -4
  780. data/lib/talon_one/models/reject_referral_effect_props.rb +14 -4
  781. data/lib/talon_one/models/revision.rb +318 -0
  782. data/lib/talon_one/models/revision_activation.rb +206 -0
  783. data/lib/talon_one/models/revision_version.rb +465 -0
  784. data/lib/talon_one/models/role.rb +0 -1
  785. data/lib/talon_one/models/role_assign.rb +0 -1
  786. data/lib/talon_one/models/role_v2.rb +0 -1
  787. data/lib/talon_one/models/rollback_added_loyalty_points_effect_props.rb +11 -0
  788. data/lib/talon_one/models/rollback_deducted_loyalty_points_effect_props.rb +11 -0
  789. data/lib/talon_one/models/rollback_increased_achievement_progress_effect_props.rb +288 -0
  790. data/lib/talon_one/models/rule_failure_reason.rb +24 -4
  791. data/lib/talon_one/models/ruleset.rb +0 -1
  792. data/lib/talon_one/models/saml_connection.rb +1 -1
  793. data/lib/talon_one/models/scim_base_user.rb +237 -0
  794. data/lib/talon_one/models/scim_base_user_name.rb +208 -0
  795. data/lib/talon_one/models/scim_new_user.rb +242 -0
  796. data/lib/talon_one/models/scim_patch_operation.rb +267 -0
  797. data/lib/talon_one/models/scim_patch_request.rb +226 -0
  798. data/lib/talon_one/models/scim_resource.rb +228 -0
  799. data/lib/talon_one/models/scim_resource_types_list_response.rb +214 -0
  800. data/lib/talon_one/models/scim_schema_resource.rb +239 -0
  801. data/lib/talon_one/models/scim_schemas_list_response.rb +236 -0
  802. data/lib/talon_one/models/scim_service_provider_config_response.rb +265 -0
  803. data/lib/talon_one/models/scim_service_provider_config_response_bulk.rb +228 -0
  804. data/lib/talon_one/models/scim_service_provider_config_response_change_password.rb +208 -0
  805. data/lib/talon_one/models/scim_service_provider_config_response_filter.rb +218 -0
  806. data/lib/talon_one/models/scim_service_provider_config_response_patch.rb +208 -0
  807. data/lib/talon_one/models/scim_service_provider_config_response_sort.rb +208 -0
  808. data/lib/talon_one/models/scim_user.rb +257 -0
  809. data/lib/talon_one/models/scim_users_list_response.rb +236 -0
  810. data/lib/talon_one/models/sso_config.rb +14 -4
  811. data/lib/talon_one/models/store.rb +1 -2
  812. data/lib/talon_one/models/strikethrough_debug_response.rb +221 -0
  813. data/lib/talon_one/models/summary_campaign_store_budget.rb +280 -0
  814. data/lib/talon_one/models/talang_attribute.rb +0 -1
  815. data/lib/talon_one/models/template_arg_def.rb +11 -2
  816. data/lib/talon_one/models/template_def.rb +0 -1
  817. data/lib/talon_one/models/template_limit_config.rb +0 -1
  818. data/lib/talon_one/models/tier.rb +12 -2
  819. data/lib/talon_one/models/transfer_loyalty_card.rb +25 -4
  820. data/lib/talon_one/models/update_achievement.rb +90 -4
  821. data/lib/talon_one/models/update_application.rb +24 -4
  822. data/lib/talon_one/models/update_application_cif.rb +237 -0
  823. data/lib/talon_one/models/update_campaign.rb +1 -1
  824. data/lib/talon_one/models/update_campaign_evaluation_group.rb +0 -1
  825. data/lib/talon_one/models/update_campaign_group.rb +0 -1
  826. data/lib/talon_one/models/update_campaign_template.rb +10 -1
  827. data/lib/talon_one/models/update_coupon.rb +1 -2
  828. data/lib/talon_one/models/update_coupon_batch.rb +1 -2
  829. data/lib/talon_one/models/update_loyalty_card.rb +15 -5
  830. data/lib/talon_one/models/update_loyalty_program.rb +63 -22
  831. data/lib/talon_one/models/update_loyalty_program_tier.rb +257 -0
  832. data/lib/talon_one/models/update_picklist.rb +0 -1
  833. data/lib/talon_one/models/update_referral.rb +1 -1
  834. data/lib/talon_one/models/update_referral_batch.rb +1 -1
  835. data/lib/talon_one/models/user.rb +14 -5
  836. data/lib/talon_one/models/value_map.rb +245 -0
  837. data/lib/talon_one/models/webhook.rb +12 -3
  838. data/lib/talon_one/models/webhook_log_entry.rb +1 -1
  839. data/lib/talon_one/models/webhook_with_outgoing_integration_details.rb +12 -3
  840. data/lib/talon_one/version.rb +1 -1
  841. data/lib/talon_one.rb +69 -15
  842. data/spec/api/integration_api_spec.rb +22 -7
  843. data/spec/api/management_api_spec.rb +284 -98
  844. data/spec/models/achievement_progress_spec.rb +6 -0
  845. data/spec/models/achievement_spec.rb +32 -0
  846. data/spec/models/additional_campaign_properties_spec.rb +7 -1
  847. data/spec/models/analytics_data_point_spec.rb +47 -0
  848. data/spec/models/analytics_data_point_with_trend_and_influenced_rate_spec.rb +53 -0
  849. data/spec/models/analytics_data_point_with_trend_and_uplift_spec.rb +53 -0
  850. data/spec/models/analytics_data_point_with_trend_spec.rb +47 -0
  851. data/spec/models/analytics_product_sku_spec.rb +53 -0
  852. data/spec/models/analytics_product_spec.rb +59 -0
  853. data/spec/models/application_campaign_analytics_spec.rb +1 -19
  854. data/spec/models/application_campaign_stats_spec.rb +2 -2
  855. data/spec/models/application_cif_expression_spec.rb +71 -0
  856. data/spec/models/application_cif_spec.rb +89 -0
  857. data/spec/models/application_spec.rb +12 -0
  858. data/spec/models/async_coupon_deletion_job_response_spec.rb +41 -0
  859. data/spec/models/attribute_spec.rb +1 -1
  860. data/spec/models/base_loyalty_program_spec.rb +26 -4
  861. data/spec/models/base_notification_spec.rb +1 -1
  862. data/spec/models/bulk_operation_on_campaigns_spec.rb +7 -1
  863. data/spec/models/campaign_collection_edited_notification_spec.rb +53 -0
  864. data/spec/models/campaign_notification_policy_spec.rb +6 -0
  865. data/spec/models/campaign_spec.rb +53 -1
  866. data/spec/models/campaign_store_budget_spec.rb +65 -0
  867. data/spec/models/campaign_template_coupon_reservation_settings_spec.rb +47 -0
  868. data/spec/models/campaign_template_spec.rb +6 -0
  869. data/spec/models/campaign_versions_spec.rb +81 -0
  870. data/spec/models/card_added_deducted_points_notification_policy_spec.rb +51 -0
  871. data/spec/models/coupon_deletion_filters_spec.rb +123 -0
  872. data/spec/models/coupon_deletion_job_spec.rb +107 -0
  873. data/spec/models/create_achievement_spec.rb +32 -0
  874. data/spec/models/customer_session_v2_spec.rb +6 -0
  875. data/spec/models/effect_entity_spec.rb +24 -0
  876. data/spec/models/effect_spec.rb +24 -0
  877. data/spec/models/environment_spec.rb +6 -0
  878. data/spec/models/generate_campaign_description_spec.rb +47 -0
  879. data/spec/models/generate_campaign_tags_spec.rb +41 -0
  880. data/spec/models/generate_item_filter_description_spec.rb +41 -0
  881. data/spec/models/generate_loyalty_card_spec.rb +57 -0
  882. data/spec/models/generate_rule_title_rule_spec.rb +47 -0
  883. data/spec/models/generate_rule_title_spec.rb +47 -0
  884. data/spec/models/inline_response20021_spec.rb +6 -0
  885. data/spec/models/inline_response20022_spec.rb +2 -2
  886. data/spec/models/inline_response20024_spec.rb +0 -6
  887. data/spec/models/inline_response20028_spec.rb +1 -1
  888. data/spec/models/inline_response20029_spec.rb +6 -0
  889. data/spec/models/inline_response20030_spec.rb +0 -6
  890. data/spec/models/inline_response20032_spec.rb +6 -0
  891. data/spec/models/inline_response20033_spec.rb +0 -6
  892. data/spec/models/inline_response20034_spec.rb +6 -0
  893. data/spec/models/inline_response20035_spec.rb +0 -6
  894. data/spec/models/inline_response20041_spec.rb +6 -0
  895. data/spec/models/inline_response20042_spec.rb +0 -6
  896. data/spec/models/inline_response20044_spec.rb +6 -0
  897. data/spec/models/inline_response20045_spec.rb +0 -6
  898. data/spec/models/limit_config_spec.rb +1 -1
  899. data/spec/models/list_campaign_store_budgets_spec.rb +59 -0
  900. data/spec/models/list_campaign_store_budgets_store_spec.rb +53 -0
  901. data/spec/models/loyalty_balance_with_tier_spec.rb +83 -0
  902. data/spec/models/loyalty_balances_with_tiers_spec.rb +47 -0
  903. data/spec/models/loyalty_card_batch_response_spec.rb +47 -0
  904. data/spec/models/loyalty_card_batch_spec.rb +63 -0
  905. data/spec/models/loyalty_card_spec.rb +24 -0
  906. data/spec/models/loyalty_program_entity_spec.rb +12 -0
  907. data/spec/models/loyalty_program_spec.rb +38 -4
  908. data/spec/models/loyalty_tier_spec.rb +12 -0
  909. data/spec/models/message_log_entry_spec.rb +25 -1
  910. data/spec/models/new_app_wide_coupon_deletion_job_spec.rb +47 -0
  911. data/spec/models/new_application_cif_expression_spec.rb +53 -0
  912. data/spec/models/new_application_cif_spec.rb +71 -0
  913. data/spec/models/new_application_spec.rb +6 -0
  914. data/spec/models/new_attribute_spec.rb +1 -1
  915. data/spec/models/new_campaign_store_budget_spec.rb +61 -0
  916. data/spec/models/new_campaign_store_budget_store_limit_spec.rb +47 -0
  917. data/spec/models/new_campaign_template_spec.rb +6 -0
  918. data/spec/models/new_coupon_deletion_job_spec.rb +41 -0
  919. data/spec/models/new_loyalty_program_spec.rb +26 -4
  920. data/spec/models/new_notification_test_spec.rb +1 -1
  921. data/spec/models/new_outgoing_integration_webhook_spec.rb +6 -0
  922. data/spec/models/new_revision_version_spec.rb +105 -0
  923. data/spec/models/new_webhook_spec.rb +6 -0
  924. data/spec/models/okta_event_payload_data_spec.rb +41 -0
  925. data/spec/models/okta_event_payload_spec.rb +41 -0
  926. data/spec/models/okta_event_spec.rb +47 -0
  927. data/spec/models/okta_event_target_spec.rb +53 -0
  928. data/spec/models/product_search_match_spec.rb +53 -0
  929. data/spec/models/product_sku_unit_analytics_spec.rb +59 -0
  930. data/spec/models/product_unit_analytics_spec.rb +65 -0
  931. data/spec/models/projected_tier_spec.rb +53 -0
  932. data/spec/models/reject_coupon_effect_props_spec.rb +6 -0
  933. data/spec/models/reject_referral_effect_props_spec.rb +6 -0
  934. data/spec/models/revision_activation_spec.rb +41 -0
  935. data/spec/models/revision_spec.rb +95 -0
  936. data/spec/models/revision_version_spec.rb +153 -0
  937. data/spec/models/rollback_increased_achievement_progress_effect_props_spec.rb +71 -0
  938. data/spec/models/rule_failure_reason_spec.rb +12 -0
  939. data/spec/models/scim_base_user_name_spec.rb +41 -0
  940. data/spec/models/scim_base_user_spec.rb +59 -0
  941. data/spec/models/scim_new_user_spec.rb +59 -0
  942. data/spec/models/scim_patch_operation_spec.rb +57 -0
  943. data/spec/models/scim_patch_request_spec.rb +47 -0
  944. data/spec/models/scim_resource_spec.rb +53 -0
  945. data/spec/models/scim_resource_types_list_response_spec.rb +41 -0
  946. data/spec/models/scim_schema_resource_spec.rb +59 -0
  947. data/spec/models/scim_schemas_list_response_spec.rb +53 -0
  948. data/spec/models/scim_service_provider_config_response_bulk_spec.rb +53 -0
  949. data/spec/models/scim_service_provider_config_response_change_password_spec.rb +41 -0
  950. data/spec/models/scim_service_provider_config_response_filter_spec.rb +47 -0
  951. data/spec/models/scim_service_provider_config_response_patch_spec.rb +41 -0
  952. data/spec/models/scim_service_provider_config_response_sort_spec.rb +41 -0
  953. data/spec/models/scim_service_provider_config_response_spec.rb +77 -0
  954. data/spec/models/scim_user_spec.rb +65 -0
  955. data/spec/models/scim_users_list_response_spec.rb +53 -0
  956. data/spec/models/sso_config_spec.rb +6 -0
  957. data/spec/models/strikethrough_debug_response_spec.rb +47 -0
  958. data/spec/models/summary_campaign_store_budget_spec.rb +61 -0
  959. data/spec/models/template_arg_def_spec.rb +6 -0
  960. data/spec/models/template_limit_config_spec.rb +1 -1
  961. data/spec/models/tier_spec.rb +6 -0
  962. data/spec/models/transfer_loyalty_card_spec.rb +6 -0
  963. data/spec/models/update_achievement_spec.rb +32 -0
  964. data/spec/models/update_application_cif_spec.rb +59 -0
  965. data/spec/models/update_application_spec.rb +12 -0
  966. data/spec/models/update_campaign_template_spec.rb +6 -0
  967. data/spec/models/update_loyalty_card_spec.rb +6 -0
  968. data/spec/models/update_loyalty_program_spec.rb +26 -4
  969. data/spec/models/update_loyalty_program_tier_spec.rb +53 -0
  970. data/spec/models/user_spec.rb +6 -0
  971. data/spec/models/value_map_spec.rb +59 -0
  972. data/spec/models/webhook_spec.rb +6 -0
  973. data/spec/models/webhook_with_outgoing_integration_details_spec.rb +6 -0
  974. metadata +663 -6
data/README.md CHANGED
@@ -1,30 +1,16 @@
1
- # talon_one
1
+ # Talon.One Ruby SDK
2
2
 
3
- TalonOne - the Ruby gem for the Talon.One API
4
-
5
- Use the Talon.One API to integrate with your application and to
6
- manage applications and campaigns:
7
-
8
- - Use the operations in the [Integration API section](#integration-api)
9
- are used to integrate with our platform
10
- - Use the operation in the [Management API section](#management-api) to
11
- manage applications and campaigns.
12
-
13
- ## Determining the base URL of the endpoints
14
-
15
- The API is available at the same hostname as your Campaign Manager deployment.
16
- For example, if you access the Campaign Manager at `https://yourbaseurl.talon.one/`,
17
- the URL for the [updateCustomerSessionV2](https://docs.talon.one/integration-api#operation/updateCustomerSessionV2) endpoint
18
- is `https://yourbaseurl.talon.one/v2/customer_sessions/{Id}`
3
+ This SDK supports all of the operations of Talon.One's Integration API and Management API.
19
4
 
5
+ ## Installation
20
6
 
21
- This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
7
+ ### Gemfile
22
8
 
23
- - API version:
24
- - Package version: 5.0.0
25
- - Build package: org.openapitools.codegen.languages.RubyClientCodegen
9
+ Add this to the Gemfile:
26
10
 
27
- ## Installation
11
+ ```shell
12
+ gem 'talon_one', '~> 7.0.0'
13
+ ```
28
14
 
29
15
  ### Build a gem
30
16
 
@@ -34,40 +20,30 @@ To build the Ruby code into a gem:
34
20
  gem build talon_one.gemspec
35
21
  ```
36
22
 
37
- Then either install the gem locally:
23
+ ### Local installation
24
+
25
+ To install the gem locally:
38
26
 
39
27
  ```shell
40
- gem install ./talon_one-5.0.0.gem
28
+ gem install ./talon_one-7.0.0.gem
41
29
  ```
42
30
 
43
- (for development, run `gem install --dev ./talon_one-5.0.0.gem` to install the development dependencies)
44
-
45
- or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
46
-
47
- Finally add this to the Gemfile:
48
-
49
- gem 'talon_one', '~> 5.0.0'
31
+ For development, run `gem install --dev ./talon_one-7.0.0.gem` to install the development dependencies.
50
32
 
51
- ### Install from Git
33
+ ### RubyGems
52
34
 
53
- If the Ruby gem is hosted at a git repository: https://github.com/talon-one/talon_one.rb, then add the following in the Gemfile:
54
-
55
- gem 'talon_one', :git => 'https://github.com/talon-one/talon_one.rb.git'
56
-
57
- ### Include the Ruby code directly
58
-
59
- Include the Ruby code directly using `-I` as follows:
35
+ The SDK is available on [RubyGems](https://rubygems.org/gems/talon_one). To install it, run:
60
36
 
61
37
  ```shell
62
- ruby -Ilib script.rb
38
+ gem install talon_one
63
39
  ```
64
40
 
65
- ## Getting Started
66
-
67
- Please follow the [installation](#installation) procedure and then run the following code:
41
+ ## Getting started
68
42
 
69
43
  ### Integration API
70
44
 
45
+ The following code shows an example of using the Integration API:
46
+
71
47
  ```ruby
72
48
  # Load the gem
73
49
  require 'talon_one'
@@ -160,6 +136,8 @@ end
160
136
 
161
137
  ### Management API
162
138
 
139
+ The following code shows an example of using the Management API:
140
+
163
141
  ```ruby
164
142
  # Load the gem
165
143
  require 'talon_one'
@@ -189,9 +167,9 @@ rescue TalonOne::ApiError => e
189
167
  end
190
168
  ```
191
169
 
192
- ## Documentation for API Endpoints
170
+ ## Documentation for API endpoints
193
171
 
194
- All URIs are relative to *https://yourbaseurl.talon.one*
172
+ All URLs are relative to `https://yourbaseurl.talon.one`.
195
173
 
196
174
  Class | Method | HTTP request | Description
197
175
  ------------ | ------------- | ------------- | -------------
@@ -203,9 +181,10 @@ Class | Method | HTTP request | Description
203
181
  *TalonOne::IntegrationApi* | [**delete_audience_v2**](docs/IntegrationApi.md#delete_audience_v2) | **DELETE** /v2/audiences/{audienceId} | Delete audience
204
182
  *TalonOne::IntegrationApi* | [**delete_coupon_reservation**](docs/IntegrationApi.md#delete_coupon_reservation) | **DELETE** /v1/coupon_reservations/{couponValue} | Delete coupon reservations
205
183
  *TalonOne::IntegrationApi* | [**delete_customer_data**](docs/IntegrationApi.md#delete_customer_data) | **DELETE** /v1/customer_data/{integrationId} | Delete customer's personal data
184
+ *TalonOne::IntegrationApi* | [**generate_loyalty_card**](docs/IntegrationApi.md#generate_loyalty_card) | **POST** /v1/loyalty_programs/{loyaltyProgramId}/cards | Generate loyalty card
206
185
  *TalonOne::IntegrationApi* | [**get_customer_inventory**](docs/IntegrationApi.md#get_customer_inventory) | **GET** /v1/customer_profiles/{integrationId}/inventory | List customer data
207
186
  *TalonOne::IntegrationApi* | [**get_customer_session**](docs/IntegrationApi.md#get_customer_session) | **GET** /v2/customer_sessions/{customerSessionId} | Get customer session
208
- *TalonOne::IntegrationApi* | [**get_loyalty_balances**](docs/IntegrationApi.md#get_loyalty_balances) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/balances | Get customer's loyalty points
187
+ *TalonOne::IntegrationApi* | [**get_loyalty_balances**](docs/IntegrationApi.md#get_loyalty_balances) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/balances | Get customer's loyalty balances
209
188
  *TalonOne::IntegrationApi* | [**get_loyalty_card_balances**](docs/IntegrationApi.md#get_loyalty_card_balances) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/balances | Get card's point balances
210
189
  *TalonOne::IntegrationApi* | [**get_loyalty_card_points**](docs/IntegrationApi.md#get_loyalty_card_points) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/points | List card's unused loyalty points
211
190
  *TalonOne::IntegrationApi* | [**get_loyalty_card_transactions**](docs/IntegrationApi.md#get_loyalty_card_transactions) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/transactions | List card's transactions
@@ -223,7 +202,7 @@ Class | Method | HTTP request | Description
223
202
  *TalonOne::IntegrationApi* | [**update_customer_profile_v2**](docs/IntegrationApi.md#update_customer_profile_v2) | **PUT** /v2/customer_profiles/{integrationId} | Update customer profile
224
203
  *TalonOne::IntegrationApi* | [**update_customer_profiles_v2**](docs/IntegrationApi.md#update_customer_profiles_v2) | **PUT** /v2/customer_profiles | Update multiple customer profiles
225
204
  *TalonOne::IntegrationApi* | [**update_customer_session_v2**](docs/IntegrationApi.md#update_customer_session_v2) | **PUT** /v2/customer_sessions/{customerSessionId} | Update customer session
226
- *TalonOne::ManagementApi* | [**activate_user_by_email**](docs/ManagementApi.md#activate_user_by_email) | **POST** /v1/users/activate | Activate user by email address
205
+ *TalonOne::ManagementApi* | [**activate_user_by_email**](docs/ManagementApi.md#activate_user_by_email) | **POST** /v1/users/activate | Enable user by email address
227
206
  *TalonOne::ManagementApi* | [**add_loyalty_card_points**](docs/ManagementApi.md#add_loyalty_card_points) | **PUT** /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/add_points | Add points to card
228
207
  *TalonOne::ManagementApi* | [**add_loyalty_points**](docs/ManagementApi.md#add_loyalty_points) | **PUT** /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/add_points | Add points to customer profile
229
208
  *TalonOne::ManagementApi* | [**copy_campaign_to_applications**](docs/ManagementApi.md#copy_campaign_to_applications) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/copy | Copy the campaign into the specified Application
@@ -231,17 +210,19 @@ Class | Method | HTTP request | Description
231
210
  *TalonOne::ManagementApi* | [**create_achievement**](docs/ManagementApi.md#create_achievement) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/achievements | Create achievement
232
211
  *TalonOne::ManagementApi* | [**create_additional_cost**](docs/ManagementApi.md#create_additional_cost) | **POST** /v1/additional_costs | Create additional cost
233
212
  *TalonOne::ManagementApi* | [**create_attribute**](docs/ManagementApi.md#create_attribute) | **POST** /v1/attributes | Create custom attribute
213
+ *TalonOne::ManagementApi* | [**create_batch_loyalty_cards**](docs/ManagementApi.md#create_batch_loyalty_cards) | **POST** /v1/loyalty_programs/{loyaltyProgramId}/cards/batch | Create loyalty cards
234
214
  *TalonOne::ManagementApi* | [**create_campaign_from_template**](docs/ManagementApi.md#create_campaign_from_template) | **POST** /v1/applications/{applicationId}/create_campaign_from_template | Create campaign from campaign template
235
215
  *TalonOne::ManagementApi* | [**create_collection**](docs/ManagementApi.md#create_collection) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/collections | Create campaign-level collection
236
216
  *TalonOne::ManagementApi* | [**create_coupons**](docs/ManagementApi.md#create_coupons) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/coupons | Create coupons
237
217
  *TalonOne::ManagementApi* | [**create_coupons_async**](docs/ManagementApi.md#create_coupons_async) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/coupons_async | Create coupons asynchronously
218
+ *TalonOne::ManagementApi* | [**create_coupons_deletion_job**](docs/ManagementApi.md#create_coupons_deletion_job) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/coupons_deletion_jobs | Creates a coupon deletion job
238
219
  *TalonOne::ManagementApi* | [**create_coupons_for_multiple_recipients**](docs/ManagementApi.md#create_coupons_for_multiple_recipients) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/coupons_with_recipients | Create coupons for multiple recipients
239
220
  *TalonOne::ManagementApi* | [**create_invite_email**](docs/ManagementApi.md#create_invite_email) | **POST** /v1/invite_emails | Resend invitation email
240
221
  *TalonOne::ManagementApi* | [**create_invite_v2**](docs/ManagementApi.md#create_invite_v2) | **POST** /v2/invites | Invite user
241
222
  *TalonOne::ManagementApi* | [**create_password_recovery_email**](docs/ManagementApi.md#create_password_recovery_email) | **POST** /v1/password_recovery_emails | Request a password reset
242
223
  *TalonOne::ManagementApi* | [**create_session**](docs/ManagementApi.md#create_session) | **POST** /v1/sessions | Create session
243
224
  *TalonOne::ManagementApi* | [**create_store**](docs/ManagementApi.md#create_store) | **POST** /v1/applications/{applicationId}/stores | Create store
244
- *TalonOne::ManagementApi* | [**deactivate_user_by_email**](docs/ManagementApi.md#deactivate_user_by_email) | **POST** /v1/users/deactivate | Deactivate user by email address
225
+ *TalonOne::ManagementApi* | [**deactivate_user_by_email**](docs/ManagementApi.md#deactivate_user_by_email) | **POST** /v1/users/deactivate | Disable user by email address
245
226
  *TalonOne::ManagementApi* | [**deduct_loyalty_card_points**](docs/ManagementApi.md#deduct_loyalty_card_points) | **PUT** /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/deduct_points | Deduct points from card
246
227
  *TalonOne::ManagementApi* | [**delete_account_collection**](docs/ManagementApi.md#delete_account_collection) | **DELETE** /v1/collections/{collectionId} | Delete account-level collection
247
228
  *TalonOne::ManagementApi* | [**delete_achievement**](docs/ManagementApi.md#delete_achievement) | **DELETE** /v1/applications/{applicationId}/campaigns/{campaignId}/achievements/{achievementId} | Delete achievement
@@ -255,9 +236,11 @@ Class | Method | HTTP request | Description
255
236
  *TalonOne::ManagementApi* | [**delete_user**](docs/ManagementApi.md#delete_user) | **DELETE** /v1/users/{userId} | Delete user
256
237
  *TalonOne::ManagementApi* | [**delete_user_by_email**](docs/ManagementApi.md#delete_user_by_email) | **POST** /v1/users/delete | Delete user by email address
257
238
  *TalonOne::ManagementApi* | [**destroy_session**](docs/ManagementApi.md#destroy_session) | **DELETE** /v1/sessions | Destroy session
239
+ *TalonOne::ManagementApi* | [**disconnect_campaign_stores**](docs/ManagementApi.md#disconnect_campaign_stores) | **DELETE** /v1/applications/{applicationId}/campaigns/{campaignId}/stores | Disconnect stores
258
240
  *TalonOne::ManagementApi* | [**export_account_collection_items**](docs/ManagementApi.md#export_account_collection_items) | **GET** /v1/collections/{collectionId}/export | Export account-level collection's items
259
241
  *TalonOne::ManagementApi* | [**export_achievements**](docs/ManagementApi.md#export_achievements) | **GET** /v1/applications/{applicationId}/campaigns/{campaignId}/achievements/{achievementId}/export | Export achievement customer data
260
242
  *TalonOne::ManagementApi* | [**export_audiences_memberships**](docs/ManagementApi.md#export_audiences_memberships) | **GET** /v1/audiences/{audienceId}/memberships/export | Export audience members
243
+ *TalonOne::ManagementApi* | [**export_campaign_stores**](docs/ManagementApi.md#export_campaign_stores) | **GET** /v1/applications/{applicationId}/campaigns/{campaignId}/stores/export | Export stores
261
244
  *TalonOne::ManagementApi* | [**export_collection_items**](docs/ManagementApi.md#export_collection_items) | **GET** /v1/applications/{applicationId}/campaigns/{campaignId}/collections/{collectionId}/export | Export campaign-level collection's items
262
245
  *TalonOne::ManagementApi* | [**export_coupons**](docs/ManagementApi.md#export_coupons) | **GET** /v1/applications/{applicationId}/export_coupons | Export coupons
263
246
  *TalonOne::ManagementApi* | [**export_customer_sessions**](docs/ManagementApi.md#export_customer_sessions) | **GET** /v1/applications/{applicationId}/export_customer_sessions | Export customer sessions
@@ -267,6 +250,7 @@ Class | Method | HTTP request | Description
267
250
  *TalonOne::ManagementApi* | [**export_loyalty_balances**](docs/ManagementApi.md#export_loyalty_balances) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/export_customer_balances | Export customer loyalty balances
268
251
  *TalonOne::ManagementApi* | [**export_loyalty_card_balances**](docs/ManagementApi.md#export_loyalty_card_balances) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/export_card_balances | Export all card transaction logs
269
252
  *TalonOne::ManagementApi* | [**export_loyalty_card_ledger**](docs/ManagementApi.md#export_loyalty_card_ledger) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/export_log | Export card's ledger log
253
+ *TalonOne::ManagementApi* | [**export_loyalty_cards**](docs/ManagementApi.md#export_loyalty_cards) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/cards/export | Export loyalty cards
270
254
  *TalonOne::ManagementApi* | [**export_loyalty_ledger**](docs/ManagementApi.md#export_loyalty_ledger) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/export_log | Export customer's transaction logs
271
255
  *TalonOne::ManagementApi* | [**export_pool_giveaways**](docs/ManagementApi.md#export_pool_giveaways) | **GET** /v1/giveaways/pools/{poolId}/export | Export giveaway codes of a giveaway pool
272
256
  *TalonOne::ManagementApi* | [**export_referrals**](docs/ManagementApi.md#export_referrals) | **GET** /v1/applications/{applicationId}/export_referrals | Export referrals
@@ -277,7 +261,6 @@ Class | Method | HTTP request | Description
277
261
  *TalonOne::ManagementApi* | [**get_achievement**](docs/ManagementApi.md#get_achievement) | **GET** /v1/applications/{applicationId}/campaigns/{campaignId}/achievements/{achievementId} | Get achievement
278
262
  *TalonOne::ManagementApi* | [**get_additional_cost**](docs/ManagementApi.md#get_additional_cost) | **GET** /v1/additional_costs/{additionalCostId} | Get additional cost
279
263
  *TalonOne::ManagementApi* | [**get_additional_costs**](docs/ManagementApi.md#get_additional_costs) | **GET** /v1/additional_costs | List additional costs
280
- *TalonOne::ManagementApi* | [**get_all_access_logs**](docs/ManagementApi.md#get_all_access_logs) | **GET** /v1/access_logs | List access logs
281
264
  *TalonOne::ManagementApi* | [**get_application**](docs/ManagementApi.md#get_application) | **GET** /v1/applications/{applicationId} | Get Application
282
265
  *TalonOne::ManagementApi* | [**get_application_api_health**](docs/ManagementApi.md#get_application_api_health) | **GET** /v1/applications/{applicationId}/health_report | Get Application health
283
266
  *TalonOne::ManagementApi* | [**get_application_customer**](docs/ManagementApi.md#get_application_customer) | **GET** /v1/applications/{applicationId}/customers/{customerId} | Get application's customer
@@ -336,6 +319,7 @@ Class | Method | HTTP request | Description
336
319
  *TalonOne::ManagementApi* | [**import_account_collection**](docs/ManagementApi.md#import_account_collection) | **POST** /v1/collections/{collectionId}/import | Import data into existing account-level collection
337
320
  *TalonOne::ManagementApi* | [**import_allowed_list**](docs/ManagementApi.md#import_allowed_list) | **POST** /v1/attributes/{attributeId}/allowed_list/import | Import allowed values for attribute
338
321
  *TalonOne::ManagementApi* | [**import_audiences_memberships**](docs/ManagementApi.md#import_audiences_memberships) | **POST** /v1/audiences/{audienceId}/memberships/import | Import audience members
322
+ *TalonOne::ManagementApi* | [**import_campaign_stores**](docs/ManagementApi.md#import_campaign_stores) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/stores/import | Import stores
339
323
  *TalonOne::ManagementApi* | [**import_collection**](docs/ManagementApi.md#import_collection) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/collections/{collectionId}/import | Import data into existing campaign-level collection
340
324
  *TalonOne::ManagementApi* | [**import_coupons**](docs/ManagementApi.md#import_coupons) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/import_coupons | Import coupons
341
325
  *TalonOne::ManagementApi* | [**import_loyalty_cards**](docs/ManagementApi.md#import_loyalty_cards) | **POST** /v1/loyalty_programs/{loyaltyProgramId}/import_cards | Import loyalty cards
@@ -352,11 +336,21 @@ Class | Method | HTTP request | Description
352
336
  *TalonOne::ManagementApi* | [**list_collections_in_application**](docs/ManagementApi.md#list_collections_in_application) | **GET** /v1/applications/{applicationId}/collections | List collections in Application
353
337
  *TalonOne::ManagementApi* | [**list_stores**](docs/ManagementApi.md#list_stores) | **GET** /v1/applications/{applicationId}/stores | List stores
354
338
  *TalonOne::ManagementApi* | [**notification_activation**](docs/ManagementApi.md#notification_activation) | **PUT** /v1/notifications/{notificationId}/activation | Activate or deactivate notification
339
+ *TalonOne::ManagementApi* | [**okta_event_handler_challenge**](docs/ManagementApi.md#okta_event_handler_challenge) | **GET** /v1/provisioning/okta | Validate Okta API ownership
355
340
  *TalonOne::ManagementApi* | [**post_added_deducted_points_notification**](docs/ManagementApi.md#post_added_deducted_points_notification) | **POST** /v1/loyalty_programs/{loyaltyProgramId}/notifications/added_deducted_points | Create notification about added or deducted loyalty points
356
341
  *TalonOne::ManagementApi* | [**post_catalogs_strikethrough_notification**](docs/ManagementApi.md#post_catalogs_strikethrough_notification) | **POST** /v1/applications/{applicationId}/catalogs/notifications/strikethrough | Create strikethrough notification
357
342
  *TalonOne::ManagementApi* | [**post_pending_points_notification**](docs/ManagementApi.md#post_pending_points_notification) | **POST** /v1/loyalty_programs/{loyaltyProgramId}/notifications/pending_points | Create notification about pending loyalty points
358
343
  *TalonOne::ManagementApi* | [**remove_loyalty_points**](docs/ManagementApi.md#remove_loyalty_points) | **PUT** /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/deduct_points | Deduct points from customer profile
359
344
  *TalonOne::ManagementApi* | [**reset_password**](docs/ManagementApi.md#reset_password) | **POST** /v1/reset_password | Reset password
345
+ *TalonOne::ManagementApi* | [**scim_create_user**](docs/ManagementApi.md#scim_create_user) | **POST** /v1/provisioning/scim/Users | Create SCIM user
346
+ *TalonOne::ManagementApi* | [**scim_delete_user**](docs/ManagementApi.md#scim_delete_user) | **DELETE** /v1/provisioning/scim/Users/{userId} | Delete SCIM user
347
+ *TalonOne::ManagementApi* | [**scim_get_resource_types**](docs/ManagementApi.md#scim_get_resource_types) | **GET** /v1/provisioning/scim/ResourceTypes | List supported SCIM resource types
348
+ *TalonOne::ManagementApi* | [**scim_get_schemas**](docs/ManagementApi.md#scim_get_schemas) | **GET** /v1/provisioning/scim/Schemas | List supported SCIM schemas
349
+ *TalonOne::ManagementApi* | [**scim_get_service_provider_config**](docs/ManagementApi.md#scim_get_service_provider_config) | **GET** /v1/provisioning/scim/ServiceProviderConfig | Get SCIM service provider configuration
350
+ *TalonOne::ManagementApi* | [**scim_get_user**](docs/ManagementApi.md#scim_get_user) | **GET** /v1/provisioning/scim/Users/{userId} | Get SCIM user
351
+ *TalonOne::ManagementApi* | [**scim_get_users**](docs/ManagementApi.md#scim_get_users) | **GET** /v1/provisioning/scim/Users | List SCIM users
352
+ *TalonOne::ManagementApi* | [**scim_patch_user**](docs/ManagementApi.md#scim_patch_user) | **PATCH** /v1/provisioning/scim/Users/{userId} | Update SCIM user attributes
353
+ *TalonOne::ManagementApi* | [**scim_replace_user_attributes**](docs/ManagementApi.md#scim_replace_user_attributes) | **PUT** /v1/provisioning/scim/Users/{userId} | Update SCIM user
360
354
  *TalonOne::ManagementApi* | [**search_coupons_advanced_application_wide_without_total_count**](docs/ManagementApi.md#search_coupons_advanced_application_wide_without_total_count) | **POST** /v1/applications/{applicationId}/coupons_search_advanced/no_total | List coupons that match the given attributes (without total count)
361
355
  *TalonOne::ManagementApi* | [**search_coupons_advanced_without_total_count**](docs/ManagementApi.md#search_coupons_advanced_without_total_count) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/coupons_search_advanced/no_total | List coupons that match the given attributes in campaign (without total count)
362
356
  *TalonOne::ManagementApi* | [**transfer_loyalty_card**](docs/ManagementApi.md#transfer_loyalty_card) | **PUT** /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/transfer | Transfer card data
@@ -374,493 +368,543 @@ Class | Method | HTTP request | Description
374
368
  *TalonOne::ManagementApi* | [**update_store**](docs/ManagementApi.md#update_store) | **PUT** /v1/applications/{applicationId}/stores/{storeId} | Update store
375
369
  *TalonOne::ManagementApi* | [**update_user**](docs/ManagementApi.md#update_user) | **PUT** /v1/users/{userId} | Update user
376
370
 
377
-
378
- ## Documentation for Models
379
-
380
- - [TalonOne::APIError](docs/APIError.md)
381
- - [TalonOne::AcceptCouponEffectProps](docs/AcceptCouponEffectProps.md)
382
- - [TalonOne::AcceptReferralEffectProps](docs/AcceptReferralEffectProps.md)
383
- - [TalonOne::AccessLogEntry](docs/AccessLogEntry.md)
384
- - [TalonOne::Account](docs/Account.md)
385
- - [TalonOne::AccountAdditionalCost](docs/AccountAdditionalCost.md)
386
- - [TalonOne::AccountAnalytics](docs/AccountAnalytics.md)
387
- - [TalonOne::AccountDashboardStatistic](docs/AccountDashboardStatistic.md)
388
- - [TalonOne::AccountDashboardStatisticCampaigns](docs/AccountDashboardStatisticCampaigns.md)
389
- - [TalonOne::AccountDashboardStatisticDiscount](docs/AccountDashboardStatisticDiscount.md)
390
- - [TalonOne::AccountDashboardStatisticLoyaltyPoints](docs/AccountDashboardStatisticLoyaltyPoints.md)
391
- - [TalonOne::AccountDashboardStatisticReferrals](docs/AccountDashboardStatisticReferrals.md)
392
- - [TalonOne::AccountDashboardStatisticRevenue](docs/AccountDashboardStatisticRevenue.md)
393
- - [TalonOne::AccountEntity](docs/AccountEntity.md)
394
- - [TalonOne::AccountLimits](docs/AccountLimits.md)
395
- - [TalonOne::Achievement](docs/Achievement.md)
396
- - [TalonOne::AchievementAdditionalProperties](docs/AchievementAdditionalProperties.md)
397
- - [TalonOne::AchievementProgress](docs/AchievementProgress.md)
398
- - [TalonOne::ActivateUserRequest](docs/ActivateUserRequest.md)
399
- - [TalonOne::AddFreeItemEffectProps](docs/AddFreeItemEffectProps.md)
400
- - [TalonOne::AddItemCatalogAction](docs/AddItemCatalogAction.md)
401
- - [TalonOne::AddLoyaltyPoints](docs/AddLoyaltyPoints.md)
402
- - [TalonOne::AddLoyaltyPointsEffectProps](docs/AddLoyaltyPointsEffectProps.md)
403
- - [TalonOne::AddToAudienceEffectProps](docs/AddToAudienceEffectProps.md)
404
- - [TalonOne::AddedDeductedPointsNotificationPolicy](docs/AddedDeductedPointsNotificationPolicy.md)
405
- - [TalonOne::AdditionalCampaignProperties](docs/AdditionalCampaignProperties.md)
406
- - [TalonOne::AdditionalCost](docs/AdditionalCost.md)
407
- - [TalonOne::Application](docs/Application.md)
408
- - [TalonOne::ApplicationAPIKey](docs/ApplicationAPIKey.md)
409
- - [TalonOne::ApplicationAnalyticsDataPoint](docs/ApplicationAnalyticsDataPoint.md)
410
- - [TalonOne::ApplicationAnalyticsDataPointAvgItemsPerSession](docs/ApplicationAnalyticsDataPointAvgItemsPerSession.md)
411
- - [TalonOne::ApplicationAnalyticsDataPointAvgSessionValue](docs/ApplicationAnalyticsDataPointAvgSessionValue.md)
412
- - [TalonOne::ApplicationAnalyticsDataPointSessionsCount](docs/ApplicationAnalyticsDataPointSessionsCount.md)
413
- - [TalonOne::ApplicationAnalyticsDataPointTotalRevenue](docs/ApplicationAnalyticsDataPointTotalRevenue.md)
414
- - [TalonOne::ApplicationApiHealth](docs/ApplicationApiHealth.md)
415
- - [TalonOne::ApplicationCampaignAnalytics](docs/ApplicationCampaignAnalytics.md)
416
- - [TalonOne::ApplicationCampaignAnalyticsAvgItemsPerSession](docs/ApplicationCampaignAnalyticsAvgItemsPerSession.md)
417
- - [TalonOne::ApplicationCampaignAnalyticsAvgSessionValue](docs/ApplicationCampaignAnalyticsAvgSessionValue.md)
418
- - [TalonOne::ApplicationCampaignAnalyticsCouponsCount](docs/ApplicationCampaignAnalyticsCouponsCount.md)
419
- - [TalonOne::ApplicationCampaignAnalyticsSessionsCount](docs/ApplicationCampaignAnalyticsSessionsCount.md)
420
- - [TalonOne::ApplicationCampaignAnalyticsTotalDiscounts](docs/ApplicationCampaignAnalyticsTotalDiscounts.md)
421
- - [TalonOne::ApplicationCampaignAnalyticsTotalRevenue](docs/ApplicationCampaignAnalyticsTotalRevenue.md)
422
- - [TalonOne::ApplicationCampaignStats](docs/ApplicationCampaignStats.md)
423
- - [TalonOne::ApplicationCustomer](docs/ApplicationCustomer.md)
424
- - [TalonOne::ApplicationCustomerEntity](docs/ApplicationCustomerEntity.md)
425
- - [TalonOne::ApplicationEntity](docs/ApplicationEntity.md)
426
- - [TalonOne::ApplicationEvent](docs/ApplicationEvent.md)
427
- - [TalonOne::ApplicationNotification](docs/ApplicationNotification.md)
428
- - [TalonOne::ApplicationReferee](docs/ApplicationReferee.md)
429
- - [TalonOne::ApplicationSession](docs/ApplicationSession.md)
430
- - [TalonOne::ApplicationSessionEntity](docs/ApplicationSessionEntity.md)
431
- - [TalonOne::ApplicationStoreEntity](docs/ApplicationStoreEntity.md)
432
- - [TalonOne::AsyncCouponCreationResponse](docs/AsyncCouponCreationResponse.md)
433
- - [TalonOne::Attribute](docs/Attribute.md)
434
- - [TalonOne::AttributesMandatory](docs/AttributesMandatory.md)
435
- - [TalonOne::AttributesSettings](docs/AttributesSettings.md)
436
- - [TalonOne::Audience](docs/Audience.md)
437
- - [TalonOne::AudienceAnalytics](docs/AudienceAnalytics.md)
438
- - [TalonOne::AudienceCustomer](docs/AudienceCustomer.md)
439
- - [TalonOne::AudienceIntegrationID](docs/AudienceIntegrationID.md)
440
- - [TalonOne::AudienceMembership](docs/AudienceMembership.md)
441
- - [TalonOne::AwardGiveawayEffectProps](docs/AwardGiveawayEffectProps.md)
442
- - [TalonOne::BaseCampaign](docs/BaseCampaign.md)
443
- - [TalonOne::BaseLoyaltyProgram](docs/BaseLoyaltyProgram.md)
444
- - [TalonOne::BaseNotification](docs/BaseNotification.md)
445
- - [TalonOne::BaseNotificationEntity](docs/BaseNotificationEntity.md)
446
- - [TalonOne::BaseNotificationWebhook](docs/BaseNotificationWebhook.md)
447
- - [TalonOne::BaseNotifications](docs/BaseNotifications.md)
448
- - [TalonOne::BaseSamlConnection](docs/BaseSamlConnection.md)
449
- - [TalonOne::Binding](docs/Binding.md)
450
- - [TalonOne::BulkApplicationNotification](docs/BulkApplicationNotification.md)
451
- - [TalonOne::BulkCampaignNotification](docs/BulkCampaignNotification.md)
452
- - [TalonOne::BulkOperationOnCampaigns](docs/BulkOperationOnCampaigns.md)
453
- - [TalonOne::Campaign](docs/Campaign.md)
454
- - [TalonOne::CampaignActivationRequest](docs/CampaignActivationRequest.md)
455
- - [TalonOne::CampaignAnalytics](docs/CampaignAnalytics.md)
456
- - [TalonOne::CampaignBudget](docs/CampaignBudget.md)
457
- - [TalonOne::CampaignCollection](docs/CampaignCollection.md)
458
- - [TalonOne::CampaignCollectionWithoutPayload](docs/CampaignCollectionWithoutPayload.md)
459
- - [TalonOne::CampaignCopy](docs/CampaignCopy.md)
460
- - [TalonOne::CampaignCreatedNotification](docs/CampaignCreatedNotification.md)
461
- - [TalonOne::CampaignDeletedNotification](docs/CampaignDeletedNotification.md)
462
- - [TalonOne::CampaignEditedNotification](docs/CampaignEditedNotification.md)
463
- - [TalonOne::CampaignEntity](docs/CampaignEntity.md)
464
- - [TalonOne::CampaignEvaluationGroup](docs/CampaignEvaluationGroup.md)
465
- - [TalonOne::CampaignEvaluationPosition](docs/CampaignEvaluationPosition.md)
466
- - [TalonOne::CampaignEvaluationTreeChangedNotification](docs/CampaignEvaluationTreeChangedNotification.md)
467
- - [TalonOne::CampaignGroup](docs/CampaignGroup.md)
468
- - [TalonOne::CampaignGroupEntity](docs/CampaignGroupEntity.md)
469
- - [TalonOne::CampaignNotification](docs/CampaignNotification.md)
470
- - [TalonOne::CampaignNotificationPolicy](docs/CampaignNotificationPolicy.md)
471
- - [TalonOne::CampaignRulesetChangedNotification](docs/CampaignRulesetChangedNotification.md)
472
- - [TalonOne::CampaignSearch](docs/CampaignSearch.md)
473
- - [TalonOne::CampaignSet](docs/CampaignSet.md)
474
- - [TalonOne::CampaignSetBranchNode](docs/CampaignSetBranchNode.md)
475
- - [TalonOne::CampaignSetLeafNode](docs/CampaignSetLeafNode.md)
476
- - [TalonOne::CampaignSetNode](docs/CampaignSetNode.md)
477
- - [TalonOne::CampaignStateChangedNotification](docs/CampaignStateChangedNotification.md)
478
- - [TalonOne::CampaignTemplate](docs/CampaignTemplate.md)
479
- - [TalonOne::CampaignTemplateCollection](docs/CampaignTemplateCollection.md)
480
- - [TalonOne::CampaignTemplateParams](docs/CampaignTemplateParams.md)
481
- - [TalonOne::CardExpiringPointsNotificationPolicy](docs/CardExpiringPointsNotificationPolicy.md)
482
- - [TalonOne::CardExpiringPointsNotificationTrigger](docs/CardExpiringPointsNotificationTrigger.md)
483
- - [TalonOne::CardLedgerPointsEntryIntegrationAPI](docs/CardLedgerPointsEntryIntegrationAPI.md)
484
- - [TalonOne::CardLedgerTransactionLogEntry](docs/CardLedgerTransactionLogEntry.md)
485
- - [TalonOne::CardLedgerTransactionLogEntryIntegrationAPI](docs/CardLedgerTransactionLogEntryIntegrationAPI.md)
486
- - [TalonOne::CartItem](docs/CartItem.md)
487
- - [TalonOne::Catalog](docs/Catalog.md)
488
- - [TalonOne::CatalogAction](docs/CatalogAction.md)
489
- - [TalonOne::CatalogActionFilter](docs/CatalogActionFilter.md)
490
- - [TalonOne::CatalogItem](docs/CatalogItem.md)
491
- - [TalonOne::CatalogSyncRequest](docs/CatalogSyncRequest.md)
492
- - [TalonOne::CatalogsStrikethroughNotificationPolicy](docs/CatalogsStrikethroughNotificationPolicy.md)
493
- - [TalonOne::Change](docs/Change.md)
494
- - [TalonOne::ChangeLoyaltyTierLevelEffectProps](docs/ChangeLoyaltyTierLevelEffectProps.md)
495
- - [TalonOne::ChangeProfilePassword](docs/ChangeProfilePassword.md)
496
- - [TalonOne::CodeGeneratorSettings](docs/CodeGeneratorSettings.md)
497
- - [TalonOne::Collection](docs/Collection.md)
498
- - [TalonOne::CollectionItem](docs/CollectionItem.md)
499
- - [TalonOne::CollectionWithoutPayload](docs/CollectionWithoutPayload.md)
500
- - [TalonOne::Coupon](docs/Coupon.md)
501
- - [TalonOne::CouponConstraints](docs/CouponConstraints.md)
502
- - [TalonOne::CouponCreatedEffectProps](docs/CouponCreatedEffectProps.md)
503
- - [TalonOne::CouponCreationJob](docs/CouponCreationJob.md)
504
- - [TalonOne::CouponLimitConfigs](docs/CouponLimitConfigs.md)
505
- - [TalonOne::CouponRejectionReason](docs/CouponRejectionReason.md)
506
- - [TalonOne::CouponReservations](docs/CouponReservations.md)
507
- - [TalonOne::CouponSearch](docs/CouponSearch.md)
508
- - [TalonOne::CouponValue](docs/CouponValue.md)
509
- - [TalonOne::CouponsNotificationPolicy](docs/CouponsNotificationPolicy.md)
510
- - [TalonOne::CreateAchievement](docs/CreateAchievement.md)
511
- - [TalonOne::CreateApplicationAPIKey](docs/CreateApplicationAPIKey.md)
512
- - [TalonOne::CreateManagementKey](docs/CreateManagementKey.md)
513
- - [TalonOne::CreateTemplateCampaign](docs/CreateTemplateCampaign.md)
514
- - [TalonOne::CreateTemplateCampaignResponse](docs/CreateTemplateCampaignResponse.md)
515
- - [TalonOne::CustomEffect](docs/CustomEffect.md)
516
- - [TalonOne::CustomEffectProps](docs/CustomEffectProps.md)
517
- - [TalonOne::CustomerActivityReport](docs/CustomerActivityReport.md)
518
- - [TalonOne::CustomerAnalytics](docs/CustomerAnalytics.md)
519
- - [TalonOne::CustomerInventory](docs/CustomerInventory.md)
520
- - [TalonOne::CustomerProfile](docs/CustomerProfile.md)
521
- - [TalonOne::CustomerProfileAudienceRequest](docs/CustomerProfileAudienceRequest.md)
522
- - [TalonOne::CustomerProfileAudienceRequestItem](docs/CustomerProfileAudienceRequestItem.md)
523
- - [TalonOne::CustomerProfileIntegrationRequestV2](docs/CustomerProfileIntegrationRequestV2.md)
524
- - [TalonOne::CustomerProfileIntegrationResponseV2](docs/CustomerProfileIntegrationResponseV2.md)
525
- - [TalonOne::CustomerProfileSearchQuery](docs/CustomerProfileSearchQuery.md)
526
- - [TalonOne::CustomerProfileUpdateV2Response](docs/CustomerProfileUpdateV2Response.md)
527
- - [TalonOne::CustomerSession](docs/CustomerSession.md)
528
- - [TalonOne::CustomerSessionV2](docs/CustomerSessionV2.md)
529
- - [TalonOne::DeactivateUserRequest](docs/DeactivateUserRequest.md)
530
- - [TalonOne::DeductLoyaltyPoints](docs/DeductLoyaltyPoints.md)
531
- - [TalonOne::DeductLoyaltyPointsEffectProps](docs/DeductLoyaltyPointsEffectProps.md)
532
- - [TalonOne::DeleteUserRequest](docs/DeleteUserRequest.md)
533
- - [TalonOne::Effect](docs/Effect.md)
534
- - [TalonOne::EffectEntity](docs/EffectEntity.md)
535
- - [TalonOne::EmailEntity](docs/EmailEntity.md)
536
- - [TalonOne::Endpoint](docs/Endpoint.md)
537
- - [TalonOne::Entity](docs/Entity.md)
538
- - [TalonOne::EntityWithTalangVisibleID](docs/EntityWithTalangVisibleID.md)
539
- - [TalonOne::Environment](docs/Environment.md)
540
- - [TalonOne::ErrorEffectProps](docs/ErrorEffectProps.md)
541
- - [TalonOne::ErrorResponse](docs/ErrorResponse.md)
542
- - [TalonOne::ErrorResponseWithStatus](docs/ErrorResponseWithStatus.md)
543
- - [TalonOne::ErrorSource](docs/ErrorSource.md)
544
- - [TalonOne::EvaluableCampaignIds](docs/EvaluableCampaignIds.md)
545
- - [TalonOne::Event](docs/Event.md)
546
- - [TalonOne::EventType](docs/EventType.md)
547
- - [TalonOne::EventV2](docs/EventV2.md)
548
- - [TalonOne::ExpiringCouponsNotificationPolicy](docs/ExpiringCouponsNotificationPolicy.md)
549
- - [TalonOne::ExpiringCouponsNotificationTrigger](docs/ExpiringCouponsNotificationTrigger.md)
550
- - [TalonOne::ExpiringPointsNotificationPolicy](docs/ExpiringPointsNotificationPolicy.md)
551
- - [TalonOne::ExpiringPointsNotificationTrigger](docs/ExpiringPointsNotificationTrigger.md)
552
- - [TalonOne::Export](docs/Export.md)
553
- - [TalonOne::FeatureFlag](docs/FeatureFlag.md)
554
- - [TalonOne::FeaturesFeed](docs/FeaturesFeed.md)
555
- - [TalonOne::FuncArgDef](docs/FuncArgDef.md)
556
- - [TalonOne::FunctionDef](docs/FunctionDef.md)
557
- - [TalonOne::GetIntegrationCouponRequest](docs/GetIntegrationCouponRequest.md)
558
- - [TalonOne::Giveaway](docs/Giveaway.md)
559
- - [TalonOne::GiveawaysPool](docs/GiveawaysPool.md)
560
- - [TalonOne::IdentifiableEntity](docs/IdentifiableEntity.md)
561
- - [TalonOne::Import](docs/Import.md)
562
- - [TalonOne::ImportEntity](docs/ImportEntity.md)
563
- - [TalonOne::IncreaseAchievementProgressEffectProps](docs/IncreaseAchievementProgressEffectProps.md)
564
- - [TalonOne::InlineResponse200](docs/InlineResponse200.md)
565
- - [TalonOne::InlineResponse2001](docs/InlineResponse2001.md)
566
- - [TalonOne::InlineResponse20010](docs/InlineResponse20010.md)
567
- - [TalonOne::InlineResponse20011](docs/InlineResponse20011.md)
568
- - [TalonOne::InlineResponse20012](docs/InlineResponse20012.md)
569
- - [TalonOne::InlineResponse20013](docs/InlineResponse20013.md)
570
- - [TalonOne::InlineResponse20014](docs/InlineResponse20014.md)
571
- - [TalonOne::InlineResponse20015](docs/InlineResponse20015.md)
572
- - [TalonOne::InlineResponse20016](docs/InlineResponse20016.md)
573
- - [TalonOne::InlineResponse20017](docs/InlineResponse20017.md)
574
- - [TalonOne::InlineResponse20018](docs/InlineResponse20018.md)
575
- - [TalonOne::InlineResponse20019](docs/InlineResponse20019.md)
576
- - [TalonOne::InlineResponse2002](docs/InlineResponse2002.md)
577
- - [TalonOne::InlineResponse20020](docs/InlineResponse20020.md)
578
- - [TalonOne::InlineResponse20021](docs/InlineResponse20021.md)
579
- - [TalonOne::InlineResponse20022](docs/InlineResponse20022.md)
580
- - [TalonOne::InlineResponse20023](docs/InlineResponse20023.md)
581
- - [TalonOne::InlineResponse20024](docs/InlineResponse20024.md)
582
- - [TalonOne::InlineResponse20025](docs/InlineResponse20025.md)
583
- - [TalonOne::InlineResponse20026](docs/InlineResponse20026.md)
584
- - [TalonOne::InlineResponse20027](docs/InlineResponse20027.md)
585
- - [TalonOne::InlineResponse20028](docs/InlineResponse20028.md)
586
- - [TalonOne::InlineResponse20029](docs/InlineResponse20029.md)
587
- - [TalonOne::InlineResponse2003](docs/InlineResponse2003.md)
588
- - [TalonOne::InlineResponse20030](docs/InlineResponse20030.md)
589
- - [TalonOne::InlineResponse20031](docs/InlineResponse20031.md)
590
- - [TalonOne::InlineResponse20032](docs/InlineResponse20032.md)
591
- - [TalonOne::InlineResponse20033](docs/InlineResponse20033.md)
592
- - [TalonOne::InlineResponse20034](docs/InlineResponse20034.md)
593
- - [TalonOne::InlineResponse20035](docs/InlineResponse20035.md)
594
- - [TalonOne::InlineResponse20036](docs/InlineResponse20036.md)
595
- - [TalonOne::InlineResponse20037](docs/InlineResponse20037.md)
596
- - [TalonOne::InlineResponse20038](docs/InlineResponse20038.md)
597
- - [TalonOne::InlineResponse20039](docs/InlineResponse20039.md)
598
- - [TalonOne::InlineResponse2004](docs/InlineResponse2004.md)
599
- - [TalonOne::InlineResponse20040](docs/InlineResponse20040.md)
600
- - [TalonOne::InlineResponse20041](docs/InlineResponse20041.md)
601
- - [TalonOne::InlineResponse20042](docs/InlineResponse20042.md)
602
- - [TalonOne::InlineResponse20043](docs/InlineResponse20043.md)
603
- - [TalonOne::InlineResponse20044](docs/InlineResponse20044.md)
604
- - [TalonOne::InlineResponse20045](docs/InlineResponse20045.md)
605
- - [TalonOne::InlineResponse20046](docs/InlineResponse20046.md)
606
- - [TalonOne::InlineResponse20047](docs/InlineResponse20047.md)
607
- - [TalonOne::InlineResponse2005](docs/InlineResponse2005.md)
608
- - [TalonOne::InlineResponse2006](docs/InlineResponse2006.md)
609
- - [TalonOne::InlineResponse2007](docs/InlineResponse2007.md)
610
- - [TalonOne::InlineResponse2008](docs/InlineResponse2008.md)
611
- - [TalonOne::InlineResponse2009](docs/InlineResponse2009.md)
612
- - [TalonOne::InlineResponse201](docs/InlineResponse201.md)
613
- - [TalonOne::IntegrationCoupon](docs/IntegrationCoupon.md)
614
- - [TalonOne::IntegrationCustomerSessionResponse](docs/IntegrationCustomerSessionResponse.md)
615
- - [TalonOne::IntegrationEntity](docs/IntegrationEntity.md)
616
- - [TalonOne::IntegrationEvent](docs/IntegrationEvent.md)
617
- - [TalonOne::IntegrationEventV2Request](docs/IntegrationEventV2Request.md)
618
- - [TalonOne::IntegrationProfileEntity](docs/IntegrationProfileEntity.md)
619
- - [TalonOne::IntegrationRequest](docs/IntegrationRequest.md)
620
- - [TalonOne::IntegrationState](docs/IntegrationState.md)
621
- - [TalonOne::IntegrationStateV2](docs/IntegrationStateV2.md)
622
- - [TalonOne::IntegrationStoreEntity](docs/IntegrationStoreEntity.md)
623
- - [TalonOne::InventoryCoupon](docs/InventoryCoupon.md)
624
- - [TalonOne::InventoryReferral](docs/InventoryReferral.md)
625
- - [TalonOne::ItemAttribute](docs/ItemAttribute.md)
626
- - [TalonOne::LedgerEntry](docs/LedgerEntry.md)
627
- - [TalonOne::LedgerInfo](docs/LedgerInfo.md)
628
- - [TalonOne::LedgerPointsEntryIntegrationAPI](docs/LedgerPointsEntryIntegrationAPI.md)
629
- - [TalonOne::LedgerTransactionLogEntryIntegrationAPI](docs/LedgerTransactionLogEntryIntegrationAPI.md)
630
- - [TalonOne::LibraryAttribute](docs/LibraryAttribute.md)
631
- - [TalonOne::LimitConfig](docs/LimitConfig.md)
632
- - [TalonOne::LimitCounter](docs/LimitCounter.md)
633
- - [TalonOne::LoginParams](docs/LoginParams.md)
634
- - [TalonOne::Loyalty](docs/Loyalty.md)
635
- - [TalonOne::LoyaltyBalance](docs/LoyaltyBalance.md)
636
- - [TalonOne::LoyaltyBalances](docs/LoyaltyBalances.md)
637
- - [TalonOne::LoyaltyCard](docs/LoyaltyCard.md)
638
- - [TalonOne::LoyaltyCardBalances](docs/LoyaltyCardBalances.md)
639
- - [TalonOne::LoyaltyCardProfileRegistration](docs/LoyaltyCardProfileRegistration.md)
640
- - [TalonOne::LoyaltyCardRegistration](docs/LoyaltyCardRegistration.md)
641
- - [TalonOne::LoyaltyDashboardData](docs/LoyaltyDashboardData.md)
642
- - [TalonOne::LoyaltyDashboardPointsBreakdown](docs/LoyaltyDashboardPointsBreakdown.md)
643
- - [TalonOne::LoyaltyLedger](docs/LoyaltyLedger.md)
644
- - [TalonOne::LoyaltyLedgerEntry](docs/LoyaltyLedgerEntry.md)
645
- - [TalonOne::LoyaltyLedgerTransactions](docs/LoyaltyLedgerTransactions.md)
646
- - [TalonOne::LoyaltyMembership](docs/LoyaltyMembership.md)
647
- - [TalonOne::LoyaltyProgram](docs/LoyaltyProgram.md)
648
- - [TalonOne::LoyaltyProgramBalance](docs/LoyaltyProgramBalance.md)
649
- - [TalonOne::LoyaltyProgramEntity](docs/LoyaltyProgramEntity.md)
650
- - [TalonOne::LoyaltyProgramLedgers](docs/LoyaltyProgramLedgers.md)
651
- - [TalonOne::LoyaltyProgramSubledgers](docs/LoyaltyProgramSubledgers.md)
652
- - [TalonOne::LoyaltyProgramTransaction](docs/LoyaltyProgramTransaction.md)
653
- - [TalonOne::LoyaltySubLedger](docs/LoyaltySubLedger.md)
654
- - [TalonOne::LoyaltyTier](docs/LoyaltyTier.md)
655
- - [TalonOne::ManagementKey](docs/ManagementKey.md)
656
- - [TalonOne::ManagerConfig](docs/ManagerConfig.md)
657
- - [TalonOne::MessageLogEntries](docs/MessageLogEntries.md)
658
- - [TalonOne::MessageLogEntry](docs/MessageLogEntry.md)
659
- - [TalonOne::MessageLogRequest](docs/MessageLogRequest.md)
660
- - [TalonOne::MessageLogResponse](docs/MessageLogResponse.md)
661
- - [TalonOne::Meta](docs/Meta.md)
662
- - [TalonOne::ModelReturn](docs/ModelReturn.md)
663
- - [TalonOne::MultiApplicationEntity](docs/MultiApplicationEntity.md)
664
- - [TalonOne::MultipleAttribute](docs/MultipleAttribute.md)
665
- - [TalonOne::MultipleAudiences](docs/MultipleAudiences.md)
666
- - [TalonOne::MultipleAudiencesItem](docs/MultipleAudiencesItem.md)
667
- - [TalonOne::MultipleCustomerProfileIntegrationRequest](docs/MultipleCustomerProfileIntegrationRequest.md)
668
- - [TalonOne::MultipleCustomerProfileIntegrationRequestItem](docs/MultipleCustomerProfileIntegrationRequestItem.md)
669
- - [TalonOne::MultipleCustomerProfileIntegrationResponseV2](docs/MultipleCustomerProfileIntegrationResponseV2.md)
670
- - [TalonOne::MultipleNewAttribute](docs/MultipleNewAttribute.md)
671
- - [TalonOne::MultipleNewAudiences](docs/MultipleNewAudiences.md)
672
- - [TalonOne::MutableEntity](docs/MutableEntity.md)
673
- - [TalonOne::NewAccount](docs/NewAccount.md)
674
- - [TalonOne::NewAccountSignUp](docs/NewAccountSignUp.md)
675
- - [TalonOne::NewAdditionalCost](docs/NewAdditionalCost.md)
676
- - [TalonOne::NewApplication](docs/NewApplication.md)
677
- - [TalonOne::NewApplicationAPIKey](docs/NewApplicationAPIKey.md)
678
- - [TalonOne::NewAttribute](docs/NewAttribute.md)
679
- - [TalonOne::NewAudience](docs/NewAudience.md)
680
- - [TalonOne::NewBaseNotification](docs/NewBaseNotification.md)
681
- - [TalonOne::NewCampaign](docs/NewCampaign.md)
682
- - [TalonOne::NewCampaignCollection](docs/NewCampaignCollection.md)
683
- - [TalonOne::NewCampaignEvaluationGroup](docs/NewCampaignEvaluationGroup.md)
684
- - [TalonOne::NewCampaignGroup](docs/NewCampaignGroup.md)
685
- - [TalonOne::NewCampaignSet](docs/NewCampaignSet.md)
686
- - [TalonOne::NewCampaignTemplate](docs/NewCampaignTemplate.md)
687
- - [TalonOne::NewCatalog](docs/NewCatalog.md)
688
- - [TalonOne::NewCollection](docs/NewCollection.md)
689
- - [TalonOne::NewCouponCreationJob](docs/NewCouponCreationJob.md)
690
- - [TalonOne::NewCoupons](docs/NewCoupons.md)
691
- - [TalonOne::NewCouponsForMultipleRecipients](docs/NewCouponsForMultipleRecipients.md)
692
- - [TalonOne::NewCustomEffect](docs/NewCustomEffect.md)
693
- - [TalonOne::NewCustomerProfile](docs/NewCustomerProfile.md)
694
- - [TalonOne::NewCustomerSession](docs/NewCustomerSession.md)
695
- - [TalonOne::NewCustomerSessionV2](docs/NewCustomerSessionV2.md)
696
- - [TalonOne::NewEvent](docs/NewEvent.md)
697
- - [TalonOne::NewEventType](docs/NewEventType.md)
698
- - [TalonOne::NewExternalInvitation](docs/NewExternalInvitation.md)
699
- - [TalonOne::NewGiveawaysPool](docs/NewGiveawaysPool.md)
700
- - [TalonOne::NewInternalAudience](docs/NewInternalAudience.md)
701
- - [TalonOne::NewInvitation](docs/NewInvitation.md)
702
- - [TalonOne::NewInviteEmail](docs/NewInviteEmail.md)
703
- - [TalonOne::NewLoyaltyProgram](docs/NewLoyaltyProgram.md)
704
- - [TalonOne::NewLoyaltyTier](docs/NewLoyaltyTier.md)
705
- - [TalonOne::NewManagementKey](docs/NewManagementKey.md)
706
- - [TalonOne::NewMultipleAudiencesItem](docs/NewMultipleAudiencesItem.md)
707
- - [TalonOne::NewNotificationTest](docs/NewNotificationTest.md)
708
- - [TalonOne::NewNotificationWebhook](docs/NewNotificationWebhook.md)
709
- - [TalonOne::NewOutgoingIntegrationWebhook](docs/NewOutgoingIntegrationWebhook.md)
710
- - [TalonOne::NewPassword](docs/NewPassword.md)
711
- - [TalonOne::NewPasswordEmail](docs/NewPasswordEmail.md)
712
- - [TalonOne::NewPicklist](docs/NewPicklist.md)
713
- - [TalonOne::NewReferral](docs/NewReferral.md)
714
- - [TalonOne::NewReferralsForMultipleAdvocates](docs/NewReferralsForMultipleAdvocates.md)
715
- - [TalonOne::NewReturn](docs/NewReturn.md)
716
- - [TalonOne::NewRole](docs/NewRole.md)
717
- - [TalonOne::NewRoleV2](docs/NewRoleV2.md)
718
- - [TalonOne::NewRuleset](docs/NewRuleset.md)
719
- - [TalonOne::NewSamlConnection](docs/NewSamlConnection.md)
720
- - [TalonOne::NewStore](docs/NewStore.md)
721
- - [TalonOne::NewTemplateDef](docs/NewTemplateDef.md)
722
- - [TalonOne::NewUser](docs/NewUser.md)
723
- - [TalonOne::NewWebhook](docs/NewWebhook.md)
724
- - [TalonOne::Notification](docs/Notification.md)
725
- - [TalonOne::NotificationActivation](docs/NotificationActivation.md)
726
- - [TalonOne::NotificationListItem](docs/NotificationListItem.md)
727
- - [TalonOne::NotificationTest](docs/NotificationTest.md)
728
- - [TalonOne::OneTimeCode](docs/OneTimeCode.md)
729
- - [TalonOne::OutgoingIntegrationBrazePolicy](docs/OutgoingIntegrationBrazePolicy.md)
730
- - [TalonOne::OutgoingIntegrationCleverTapPolicy](docs/OutgoingIntegrationCleverTapPolicy.md)
731
- - [TalonOne::OutgoingIntegrationConfiguration](docs/OutgoingIntegrationConfiguration.md)
732
- - [TalonOne::OutgoingIntegrationIterablePolicy](docs/OutgoingIntegrationIterablePolicy.md)
733
- - [TalonOne::OutgoingIntegrationMoEngagePolicy](docs/OutgoingIntegrationMoEngagePolicy.md)
734
- - [TalonOne::OutgoingIntegrationTemplate](docs/OutgoingIntegrationTemplate.md)
735
- - [TalonOne::OutgoingIntegrationTemplateWithConfigurationDetails](docs/OutgoingIntegrationTemplateWithConfigurationDetails.md)
736
- - [TalonOne::OutgoingIntegrationTemplates](docs/OutgoingIntegrationTemplates.md)
737
- - [TalonOne::OutgoingIntegrationType](docs/OutgoingIntegrationType.md)
738
- - [TalonOne::OutgoingIntegrationTypes](docs/OutgoingIntegrationTypes.md)
739
- - [TalonOne::PatchItemCatalogAction](docs/PatchItemCatalogAction.md)
740
- - [TalonOne::PatchManyItemsCatalogAction](docs/PatchManyItemsCatalogAction.md)
741
- - [TalonOne::PendingPointsNotificationPolicy](docs/PendingPointsNotificationPolicy.md)
742
- - [TalonOne::Picklist](docs/Picklist.md)
743
- - [TalonOne::Product](docs/Product.md)
744
- - [TalonOne::ProfileAudiencesChanges](docs/ProfileAudiencesChanges.md)
745
- - [TalonOne::RedeemReferralEffectProps](docs/RedeemReferralEffectProps.md)
746
- - [TalonOne::Referral](docs/Referral.md)
747
- - [TalonOne::ReferralConstraints](docs/ReferralConstraints.md)
748
- - [TalonOne::ReferralCreatedEffectProps](docs/ReferralCreatedEffectProps.md)
749
- - [TalonOne::ReferralRejectionReason](docs/ReferralRejectionReason.md)
750
- - [TalonOne::RejectCouponEffectProps](docs/RejectCouponEffectProps.md)
751
- - [TalonOne::RejectReferralEffectProps](docs/RejectReferralEffectProps.md)
752
- - [TalonOne::RemoveFromAudienceEffectProps](docs/RemoveFromAudienceEffectProps.md)
753
- - [TalonOne::RemoveItemCatalogAction](docs/RemoveItemCatalogAction.md)
754
- - [TalonOne::RemoveManyItemsCatalogAction](docs/RemoveManyItemsCatalogAction.md)
755
- - [TalonOne::ReopenSessionResponse](docs/ReopenSessionResponse.md)
756
- - [TalonOne::ReserveCouponEffectProps](docs/ReserveCouponEffectProps.md)
757
- - [TalonOne::ReturnIntegrationRequest](docs/ReturnIntegrationRequest.md)
758
- - [TalonOne::ReturnedCartItem](docs/ReturnedCartItem.md)
759
- - [TalonOne::Role](docs/Role.md)
760
- - [TalonOne::RoleAssign](docs/RoleAssign.md)
761
- - [TalonOne::RoleMembership](docs/RoleMembership.md)
762
- - [TalonOne::RoleV2](docs/RoleV2.md)
763
- - [TalonOne::RoleV2ApplicationDetails](docs/RoleV2ApplicationDetails.md)
764
- - [TalonOne::RoleV2Base](docs/RoleV2Base.md)
765
- - [TalonOne::RoleV2PermissionSet](docs/RoleV2PermissionSet.md)
766
- - [TalonOne::RoleV2Permissions](docs/RoleV2Permissions.md)
767
- - [TalonOne::RoleV2RolesGroup](docs/RoleV2RolesGroup.md)
768
- - [TalonOne::RollbackAddedLoyaltyPointsEffectProps](docs/RollbackAddedLoyaltyPointsEffectProps.md)
769
- - [TalonOne::RollbackCouponEffectProps](docs/RollbackCouponEffectProps.md)
770
- - [TalonOne::RollbackDeductedLoyaltyPointsEffectProps](docs/RollbackDeductedLoyaltyPointsEffectProps.md)
771
- - [TalonOne::RollbackDiscountEffectProps](docs/RollbackDiscountEffectProps.md)
772
- - [TalonOne::RollbackReferralEffectProps](docs/RollbackReferralEffectProps.md)
773
- - [TalonOne::Rule](docs/Rule.md)
774
- - [TalonOne::RuleFailureReason](docs/RuleFailureReason.md)
775
- - [TalonOne::Ruleset](docs/Ruleset.md)
776
- - [TalonOne::SSOConfig](docs/SSOConfig.md)
777
- - [TalonOne::SamlConnection](docs/SamlConnection.md)
778
- - [TalonOne::SamlConnectionInternal](docs/SamlConnectionInternal.md)
779
- - [TalonOne::SamlConnectionMetadata](docs/SamlConnectionMetadata.md)
780
- - [TalonOne::SamlLoginEndpoint](docs/SamlLoginEndpoint.md)
781
- - [TalonOne::Session](docs/Session.md)
782
- - [TalonOne::SetDiscountEffectProps](docs/SetDiscountEffectProps.md)
783
- - [TalonOne::SetDiscountPerAdditionalCostEffectProps](docs/SetDiscountPerAdditionalCostEffectProps.md)
784
- - [TalonOne::SetDiscountPerAdditionalCostPerItemEffectProps](docs/SetDiscountPerAdditionalCostPerItemEffectProps.md)
785
- - [TalonOne::SetDiscountPerItemEffectProps](docs/SetDiscountPerItemEffectProps.md)
786
- - [TalonOne::ShowBundleMetadataEffectProps](docs/ShowBundleMetadataEffectProps.md)
787
- - [TalonOne::ShowNotificationEffectProps](docs/ShowNotificationEffectProps.md)
788
- - [TalonOne::SlotDef](docs/SlotDef.md)
789
- - [TalonOne::Store](docs/Store.md)
790
- - [TalonOne::StrikethroughChangedItem](docs/StrikethroughChangedItem.md)
791
- - [TalonOne::StrikethroughCustomEffectPerItemProps](docs/StrikethroughCustomEffectPerItemProps.md)
792
- - [TalonOne::StrikethroughEffect](docs/StrikethroughEffect.md)
793
- - [TalonOne::StrikethroughLabelingNotification](docs/StrikethroughLabelingNotification.md)
794
- - [TalonOne::StrikethroughSetDiscountPerItemEffectProps](docs/StrikethroughSetDiscountPerItemEffectProps.md)
795
- - [TalonOne::StrikethroughTrigger](docs/StrikethroughTrigger.md)
796
- - [TalonOne::TalangAttribute](docs/TalangAttribute.md)
797
- - [TalonOne::TalangAttributeVisibility](docs/TalangAttributeVisibility.md)
798
- - [TalonOne::TemplateArgDef](docs/TemplateArgDef.md)
799
- - [TalonOne::TemplateDef](docs/TemplateDef.md)
800
- - [TalonOne::TemplateLimitConfig](docs/TemplateLimitConfig.md)
801
- - [TalonOne::Tier](docs/Tier.md)
802
- - [TalonOne::TierDowngradeNotificationPolicy](docs/TierDowngradeNotificationPolicy.md)
803
- - [TalonOne::TierUpgradeNotificationPolicy](docs/TierUpgradeNotificationPolicy.md)
804
- - [TalonOne::TierWillDowngradeNotificationPolicy](docs/TierWillDowngradeNotificationPolicy.md)
805
- - [TalonOne::TierWillDowngradeNotificationTrigger](docs/TierWillDowngradeNotificationTrigger.md)
806
- - [TalonOne::TimePoint](docs/TimePoint.md)
807
- - [TalonOne::TrackEventV2Response](docs/TrackEventV2Response.md)
808
- - [TalonOne::TransferLoyaltyCard](docs/TransferLoyaltyCard.md)
809
- - [TalonOne::TriggerWebhookEffectProps](docs/TriggerWebhookEffectProps.md)
810
- - [TalonOne::TwoFAConfig](docs/TwoFAConfig.md)
811
- - [TalonOne::UpdateAccount](docs/UpdateAccount.md)
812
- - [TalonOne::UpdateAchievement](docs/UpdateAchievement.md)
813
- - [TalonOne::UpdateApplication](docs/UpdateApplication.md)
814
- - [TalonOne::UpdateApplicationAPIKey](docs/UpdateApplicationAPIKey.md)
815
- - [TalonOne::UpdateAttributeEffectProps](docs/UpdateAttributeEffectProps.md)
816
- - [TalonOne::UpdateAudience](docs/UpdateAudience.md)
817
- - [TalonOne::UpdateCampaign](docs/UpdateCampaign.md)
818
- - [TalonOne::UpdateCampaignCollection](docs/UpdateCampaignCollection.md)
819
- - [TalonOne::UpdateCampaignEvaluationGroup](docs/UpdateCampaignEvaluationGroup.md)
820
- - [TalonOne::UpdateCampaignGroup](docs/UpdateCampaignGroup.md)
821
- - [TalonOne::UpdateCampaignTemplate](docs/UpdateCampaignTemplate.md)
822
- - [TalonOne::UpdateCatalog](docs/UpdateCatalog.md)
823
- - [TalonOne::UpdateCollection](docs/UpdateCollection.md)
824
- - [TalonOne::UpdateCoupon](docs/UpdateCoupon.md)
825
- - [TalonOne::UpdateCouponBatch](docs/UpdateCouponBatch.md)
826
- - [TalonOne::UpdateCustomEffect](docs/UpdateCustomEffect.md)
827
- - [TalonOne::UpdateLoyaltyCard](docs/UpdateLoyaltyCard.md)
828
- - [TalonOne::UpdateLoyaltyProgram](docs/UpdateLoyaltyProgram.md)
829
- - [TalonOne::UpdatePicklist](docs/UpdatePicklist.md)
830
- - [TalonOne::UpdateReferral](docs/UpdateReferral.md)
831
- - [TalonOne::UpdateReferralBatch](docs/UpdateReferralBatch.md)
832
- - [TalonOne::UpdateRole](docs/UpdateRole.md)
833
- - [TalonOne::UpdateStore](docs/UpdateStore.md)
834
- - [TalonOne::UpdateUser](docs/UpdateUser.md)
835
- - [TalonOne::User](docs/User.md)
836
- - [TalonOne::UserEntity](docs/UserEntity.md)
837
- - [TalonOne::Webhook](docs/Webhook.md)
838
- - [TalonOne::WebhookActivationLogEntry](docs/WebhookActivationLogEntry.md)
839
- - [TalonOne::WebhookLogEntry](docs/WebhookLogEntry.md)
840
- - [TalonOne::WebhookWithOutgoingIntegrationDetails](docs/WebhookWithOutgoingIntegrationDetails.md)
841
- - [TalonOne::WillAwardGiveawayEffectProps](docs/WillAwardGiveawayEffectProps.md)
842
-
843
-
844
- ## Documentation for Authorization
845
-
371
+ ## Documentation for models
372
+
373
+ - [TalonOne::APIError](docs/APIError.md)
374
+ - [TalonOne::AcceptCouponEffectProps](docs/AcceptCouponEffectProps.md)
375
+ - [TalonOne::AcceptReferralEffectProps](docs/AcceptReferralEffectProps.md)
376
+ - [TalonOne::AccessLogEntry](docs/AccessLogEntry.md)
377
+ - [TalonOne::Account](docs/Account.md)
378
+ - [TalonOne::AccountAdditionalCost](docs/AccountAdditionalCost.md)
379
+ - [TalonOne::AccountAnalytics](docs/AccountAnalytics.md)
380
+ - [TalonOne::AccountDashboardStatistic](docs/AccountDashboardStatistic.md)
381
+ - [TalonOne::AccountDashboardStatisticCampaigns](docs/AccountDashboardStatisticCampaigns.md)
382
+ - [TalonOne::AccountDashboardStatisticDiscount](docs/AccountDashboardStatisticDiscount.md)
383
+ - [TalonOne::AccountDashboardStatisticLoyaltyPoints](docs/AccountDashboardStatisticLoyaltyPoints.md)
384
+ - [TalonOne::AccountDashboardStatisticReferrals](docs/AccountDashboardStatisticReferrals.md)
385
+ - [TalonOne::AccountDashboardStatisticRevenue](docs/AccountDashboardStatisticRevenue.md)
386
+ - [TalonOne::AccountEntity](docs/AccountEntity.md)
387
+ - [TalonOne::AccountLimits](docs/AccountLimits.md)
388
+ - [TalonOne::Achievement](docs/Achievement.md)
389
+ - [TalonOne::AchievementAdditionalProperties](docs/AchievementAdditionalProperties.md)
390
+ - [TalonOne::AchievementProgress](docs/AchievementProgress.md)
391
+ - [TalonOne::AddFreeItemEffectProps](docs/AddFreeItemEffectProps.md)
392
+ - [TalonOne::AddItemCatalogAction](docs/AddItemCatalogAction.md)
393
+ - [TalonOne::AddLoyaltyPoints](docs/AddLoyaltyPoints.md)
394
+ - [TalonOne::AddLoyaltyPointsEffectProps](docs/AddLoyaltyPointsEffectProps.md)
395
+ - [TalonOne::AddToAudienceEffectProps](docs/AddToAudienceEffectProps.md)
396
+ - [TalonOne::AddedDeductedPointsNotificationPolicy](docs/AddedDeductedPointsNotificationPolicy.md)
397
+ - [TalonOne::AdditionalCampaignProperties](docs/AdditionalCampaignProperties.md)
398
+ - [TalonOne::AdditionalCost](docs/AdditionalCost.md)
399
+ - [TalonOne::AnalyticsDataPoint](docs/AnalyticsDataPoint.md)
400
+ - [TalonOne::AnalyticsDataPointWithTrend](docs/AnalyticsDataPointWithTrend.md)
401
+ - [TalonOne::AnalyticsDataPointWithTrendAndInfluencedRate](docs/AnalyticsDataPointWithTrendAndInfluencedRate.md)
402
+ - [TalonOne::AnalyticsDataPointWithTrendAndUplift](docs/AnalyticsDataPointWithTrendAndUplift.md)
403
+ - [TalonOne::AnalyticsProduct](docs/AnalyticsProduct.md)
404
+ - [TalonOne::AnalyticsProductSKU](docs/AnalyticsProductSKU.md)
405
+ - [TalonOne::Application](docs/Application.md)
406
+ - [TalonOne::ApplicationAPIKey](docs/ApplicationAPIKey.md)
407
+ - [TalonOne::ApplicationAnalyticsDataPoint](docs/ApplicationAnalyticsDataPoint.md)
408
+ - [TalonOne::ApplicationApiHealth](docs/ApplicationApiHealth.md)
409
+ - [TalonOne::ApplicationCIF](docs/ApplicationCIF.md)
410
+ - [TalonOne::ApplicationCIFExpression](docs/ApplicationCIFExpression.md)
411
+ - [TalonOne::ApplicationCampaignAnalytics](docs/ApplicationCampaignAnalytics.md)
412
+ - [TalonOne::ApplicationCampaignStats](docs/ApplicationCampaignStats.md)
413
+ - [TalonOne::ApplicationCustomer](docs/ApplicationCustomer.md)
414
+ - [TalonOne::ApplicationCustomerEntity](docs/ApplicationCustomerEntity.md)
415
+ - [TalonOne::ApplicationEntity](docs/ApplicationEntity.md)
416
+ - [TalonOne::ApplicationEvent](docs/ApplicationEvent.md)
417
+ - [TalonOne::ApplicationNotification](docs/ApplicationNotification.md)
418
+ - [TalonOne::ApplicationReferee](docs/ApplicationReferee.md)
419
+ - [TalonOne::ApplicationSession](docs/ApplicationSession.md)
420
+ - [TalonOne::ApplicationSessionEntity](docs/ApplicationSessionEntity.md)
421
+ - [TalonOne::ApplicationStoreEntity](docs/ApplicationStoreEntity.md)
422
+ - [TalonOne::AsyncCouponCreationResponse](docs/AsyncCouponCreationResponse.md)
423
+ - [TalonOne::AsyncCouponDeletionJobResponse](docs/AsyncCouponDeletionJobResponse.md)
424
+ - [TalonOne::Attribute](docs/Attribute.md)
425
+ - [TalonOne::AttributesMandatory](docs/AttributesMandatory.md)
426
+ - [TalonOne::AttributesSettings](docs/AttributesSettings.md)
427
+ - [TalonOne::Audience](docs/Audience.md)
428
+ - [TalonOne::AudienceAnalytics](docs/AudienceAnalytics.md)
429
+ - [TalonOne::AudienceCustomer](docs/AudienceCustomer.md)
430
+ - [TalonOne::AudienceIntegrationID](docs/AudienceIntegrationID.md)
431
+ - [TalonOne::AudienceMembership](docs/AudienceMembership.md)
432
+ - [TalonOne::AwardGiveawayEffectProps](docs/AwardGiveawayEffectProps.md)
433
+ - [TalonOne::BaseCampaign](docs/BaseCampaign.md)
434
+ - [TalonOne::BaseLoyaltyProgram](docs/BaseLoyaltyProgram.md)
435
+ - [TalonOne::BaseNotification](docs/BaseNotification.md)
436
+ - [TalonOne::BaseNotificationEntity](docs/BaseNotificationEntity.md)
437
+ - [TalonOne::BaseNotificationWebhook](docs/BaseNotificationWebhook.md)
438
+ - [TalonOne::BaseNotifications](docs/BaseNotifications.md)
439
+ - [TalonOne::BaseSamlConnection](docs/BaseSamlConnection.md)
440
+ - [TalonOne::Binding](docs/Binding.md)
441
+ - [TalonOne::BulkApplicationNotification](docs/BulkApplicationNotification.md)
442
+ - [TalonOne::BulkCampaignNotification](docs/BulkCampaignNotification.md)
443
+ - [TalonOne::BulkOperationOnCampaigns](docs/BulkOperationOnCampaigns.md)
444
+ - [TalonOne::Campaign](docs/Campaign.md)
445
+ - [TalonOne::CampaignActivationRequest](docs/CampaignActivationRequest.md)
446
+ - [TalonOne::CampaignAnalytics](docs/CampaignAnalytics.md)
447
+ - [TalonOne::CampaignBudget](docs/CampaignBudget.md)
448
+ - [TalonOne::CampaignCollection](docs/CampaignCollection.md)
449
+ - [TalonOne::CampaignCollectionEditedNotification](docs/CampaignCollectionEditedNotification.md)
450
+ - [TalonOne::CampaignCollectionWithoutPayload](docs/CampaignCollectionWithoutPayload.md)
451
+ - [TalonOne::CampaignCopy](docs/CampaignCopy.md)
452
+ - [TalonOne::CampaignCreatedNotification](docs/CampaignCreatedNotification.md)
453
+ - [TalonOne::CampaignDeletedNotification](docs/CampaignDeletedNotification.md)
454
+ - [TalonOne::CampaignEditedNotification](docs/CampaignEditedNotification.md)
455
+ - [TalonOne::CampaignEntity](docs/CampaignEntity.md)
456
+ - [TalonOne::CampaignEvaluationGroup](docs/CampaignEvaluationGroup.md)
457
+ - [TalonOne::CampaignEvaluationPosition](docs/CampaignEvaluationPosition.md)
458
+ - [TalonOne::CampaignEvaluationTreeChangedNotification](docs/CampaignEvaluationTreeChangedNotification.md)
459
+ - [TalonOne::CampaignGroup](docs/CampaignGroup.md)
460
+ - [TalonOne::CampaignGroupEntity](docs/CampaignGroupEntity.md)
461
+ - [TalonOne::CampaignNotification](docs/CampaignNotification.md)
462
+ - [TalonOne::CampaignNotificationPolicy](docs/CampaignNotificationPolicy.md)
463
+ - [TalonOne::CampaignRulesetChangedNotification](docs/CampaignRulesetChangedNotification.md)
464
+ - [TalonOne::CampaignSearch](docs/CampaignSearch.md)
465
+ - [TalonOne::CampaignSet](docs/CampaignSet.md)
466
+ - [TalonOne::CampaignSetBranchNode](docs/CampaignSetBranchNode.md)
467
+ - [TalonOne::CampaignSetLeafNode](docs/CampaignSetLeafNode.md)
468
+ - [TalonOne::CampaignSetNode](docs/CampaignSetNode.md)
469
+ - [TalonOne::CampaignStateChangedNotification](docs/CampaignStateChangedNotification.md)
470
+ - [TalonOne::CampaignStoreBudget](docs/CampaignStoreBudget.md)
471
+ - [TalonOne::CampaignTemplate](docs/CampaignTemplate.md)
472
+ - [TalonOne::CampaignTemplateCollection](docs/CampaignTemplateCollection.md)
473
+ - [TalonOne::CampaignTemplateCouponReservationSettings](docs/CampaignTemplateCouponReservationSettings.md)
474
+ - [TalonOne::CampaignTemplateParams](docs/CampaignTemplateParams.md)
475
+ - [TalonOne::CampaignVersions](docs/CampaignVersions.md)
476
+ - [TalonOne::CardAddedDeductedPointsNotificationPolicy](docs/CardAddedDeductedPointsNotificationPolicy.md)
477
+ - [TalonOne::CardExpiringPointsNotificationPolicy](docs/CardExpiringPointsNotificationPolicy.md)
478
+ - [TalonOne::CardExpiringPointsNotificationTrigger](docs/CardExpiringPointsNotificationTrigger.md)
479
+ - [TalonOne::CardLedgerPointsEntryIntegrationAPI](docs/CardLedgerPointsEntryIntegrationAPI.md)
480
+ - [TalonOne::CardLedgerTransactionLogEntry](docs/CardLedgerTransactionLogEntry.md)
481
+ - [TalonOne::CardLedgerTransactionLogEntryIntegrationAPI](docs/CardLedgerTransactionLogEntryIntegrationAPI.md)
482
+ - [TalonOne::CartItem](docs/CartItem.md)
483
+ - [TalonOne::Catalog](docs/Catalog.md)
484
+ - [TalonOne::CatalogAction](docs/CatalogAction.md)
485
+ - [TalonOne::CatalogActionFilter](docs/CatalogActionFilter.md)
486
+ - [TalonOne::CatalogItem](docs/CatalogItem.md)
487
+ - [TalonOne::CatalogSyncRequest](docs/CatalogSyncRequest.md)
488
+ - [TalonOne::CatalogsStrikethroughNotificationPolicy](docs/CatalogsStrikethroughNotificationPolicy.md)
489
+ - [TalonOne::Change](docs/Change.md)
490
+ - [TalonOne::ChangeLoyaltyTierLevelEffectProps](docs/ChangeLoyaltyTierLevelEffectProps.md)
491
+ - [TalonOne::ChangeProfilePassword](docs/ChangeProfilePassword.md)
492
+ - [TalonOne::CodeGeneratorSettings](docs/CodeGeneratorSettings.md)
493
+ - [TalonOne::Collection](docs/Collection.md)
494
+ - [TalonOne::CollectionItem](docs/CollectionItem.md)
495
+ - [TalonOne::CollectionWithoutPayload](docs/CollectionWithoutPayload.md)
496
+ - [TalonOne::Coupon](docs/Coupon.md)
497
+ - [TalonOne::CouponConstraints](docs/CouponConstraints.md)
498
+ - [TalonOne::CouponCreatedEffectProps](docs/CouponCreatedEffectProps.md)
499
+ - [TalonOne::CouponCreationJob](docs/CouponCreationJob.md)
500
+ - [TalonOne::CouponDeletionFilters](docs/CouponDeletionFilters.md)
501
+ - [TalonOne::CouponDeletionJob](docs/CouponDeletionJob.md)
502
+ - [TalonOne::CouponLimitConfigs](docs/CouponLimitConfigs.md)
503
+ - [TalonOne::CouponRejectionReason](docs/CouponRejectionReason.md)
504
+ - [TalonOne::CouponReservations](docs/CouponReservations.md)
505
+ - [TalonOne::CouponSearch](docs/CouponSearch.md)
506
+ - [TalonOne::CouponValue](docs/CouponValue.md)
507
+ - [TalonOne::CouponsNotificationPolicy](docs/CouponsNotificationPolicy.md)
508
+ - [TalonOne::CreateAchievement](docs/CreateAchievement.md)
509
+ - [TalonOne::CreateApplicationAPIKey](docs/CreateApplicationAPIKey.md)
510
+ - [TalonOne::CreateManagementKey](docs/CreateManagementKey.md)
511
+ - [TalonOne::CreateTemplateCampaign](docs/CreateTemplateCampaign.md)
512
+ - [TalonOne::CreateTemplateCampaignResponse](docs/CreateTemplateCampaignResponse.md)
513
+ - [TalonOne::CustomEffect](docs/CustomEffect.md)
514
+ - [TalonOne::CustomEffectProps](docs/CustomEffectProps.md)
515
+ - [TalonOne::CustomerActivityReport](docs/CustomerActivityReport.md)
516
+ - [TalonOne::CustomerAnalytics](docs/CustomerAnalytics.md)
517
+ - [TalonOne::CustomerInventory](docs/CustomerInventory.md)
518
+ - [TalonOne::CustomerProfile](docs/CustomerProfile.md)
519
+ - [TalonOne::CustomerProfileAudienceRequest](docs/CustomerProfileAudienceRequest.md)
520
+ - [TalonOne::CustomerProfileAudienceRequestItem](docs/CustomerProfileAudienceRequestItem.md)
521
+ - [TalonOne::CustomerProfileIntegrationRequestV2](docs/CustomerProfileIntegrationRequestV2.md)
522
+ - [TalonOne::CustomerProfileIntegrationResponseV2](docs/CustomerProfileIntegrationResponseV2.md)
523
+ - [TalonOne::CustomerProfileSearchQuery](docs/CustomerProfileSearchQuery.md)
524
+ - [TalonOne::CustomerProfileUpdateV2Response](docs/CustomerProfileUpdateV2Response.md)
525
+ - [TalonOne::CustomerSession](docs/CustomerSession.md)
526
+ - [TalonOne::CustomerSessionV2](docs/CustomerSessionV2.md)
527
+ - [TalonOne::DeactivateUserRequest](docs/DeactivateUserRequest.md)
528
+ - [TalonOne::DeductLoyaltyPoints](docs/DeductLoyaltyPoints.md)
529
+ - [TalonOne::DeductLoyaltyPointsEffectProps](docs/DeductLoyaltyPointsEffectProps.md)
530
+ - [TalonOne::Effect](docs/Effect.md)
531
+ - [TalonOne::EffectEntity](docs/EffectEntity.md)
532
+ - [TalonOne::EmailEntity](docs/EmailEntity.md)
533
+ - [TalonOne::Endpoint](docs/Endpoint.md)
534
+ - [TalonOne::Entity](docs/Entity.md)
535
+ - [TalonOne::EntityWithTalangVisibleID](docs/EntityWithTalangVisibleID.md)
536
+ - [TalonOne::Environment](docs/Environment.md)
537
+ - [TalonOne::ErrorEffectProps](docs/ErrorEffectProps.md)
538
+ - [TalonOne::ErrorResponse](docs/ErrorResponse.md)
539
+ - [TalonOne::ErrorResponseWithStatus](docs/ErrorResponseWithStatus.md)
540
+ - [TalonOne::ErrorSource](docs/ErrorSource.md)
541
+ - [TalonOne::EvaluableCampaignIds](docs/EvaluableCampaignIds.md)
542
+ - [TalonOne::Event](docs/Event.md)
543
+ - [TalonOne::EventType](docs/EventType.md)
544
+ - [TalonOne::EventV2](docs/EventV2.md)
545
+ - [TalonOne::ExpiringCouponsNotificationPolicy](docs/ExpiringCouponsNotificationPolicy.md)
546
+ - [TalonOne::ExpiringCouponsNotificationTrigger](docs/ExpiringCouponsNotificationTrigger.md)
547
+ - [TalonOne::ExpiringPointsNotificationPolicy](docs/ExpiringPointsNotificationPolicy.md)
548
+ - [TalonOne::ExpiringPointsNotificationTrigger](docs/ExpiringPointsNotificationTrigger.md)
549
+ - [TalonOne::Export](docs/Export.md)
550
+ - [TalonOne::FeatureFlag](docs/FeatureFlag.md)
551
+ - [TalonOne::FeaturesFeed](docs/FeaturesFeed.md)
552
+ - [TalonOne::FuncArgDef](docs/FuncArgDef.md)
553
+ - [TalonOne::FunctionDef](docs/FunctionDef.md)
554
+ - [TalonOne::GenerateCampaignDescription](docs/GenerateCampaignDescription.md)
555
+ - [TalonOne::GenerateCampaignTags](docs/GenerateCampaignTags.md)
556
+ - [TalonOne::GenerateItemFilterDescription](docs/GenerateItemFilterDescription.md)
557
+ - [TalonOne::GenerateLoyaltyCard](docs/GenerateLoyaltyCard.md)
558
+ - [TalonOne::GenerateRuleTitle](docs/GenerateRuleTitle.md)
559
+ - [TalonOne::GenerateRuleTitleRule](docs/GenerateRuleTitleRule.md)
560
+ - [TalonOne::GetIntegrationCouponRequest](docs/GetIntegrationCouponRequest.md)
561
+ - [TalonOne::Giveaway](docs/Giveaway.md)
562
+ - [TalonOne::GiveawaysPool](docs/GiveawaysPool.md)
563
+ - [TalonOne::IdentifiableEntity](docs/IdentifiableEntity.md)
564
+ - [TalonOne::Import](docs/Import.md)
565
+ - [TalonOne::ImportEntity](docs/ImportEntity.md)
566
+ - [TalonOne::IncreaseAchievementProgressEffectProps](docs/IncreaseAchievementProgressEffectProps.md)
567
+ - [TalonOne::InlineResponse200](docs/InlineResponse200.md)
568
+ - [TalonOne::InlineResponse2001](docs/InlineResponse2001.md)
569
+ - [TalonOne::InlineResponse20010](docs/InlineResponse20010.md)
570
+ - [TalonOne::InlineResponse20011](docs/InlineResponse20011.md)
571
+ - [TalonOne::InlineResponse20012](docs/InlineResponse20012.md)
572
+ - [TalonOne::InlineResponse20013](docs/InlineResponse20013.md)
573
+ - [TalonOne::InlineResponse20014](docs/InlineResponse20014.md)
574
+ - [TalonOne::InlineResponse20015](docs/InlineResponse20015.md)
575
+ - [TalonOne::InlineResponse20016](docs/InlineResponse20016.md)
576
+ - [TalonOne::InlineResponse20017](docs/InlineResponse20017.md)
577
+ - [TalonOne::InlineResponse20018](docs/InlineResponse20018.md)
578
+ - [TalonOne::InlineResponse20019](docs/InlineResponse20019.md)
579
+ - [TalonOne::InlineResponse2002](docs/InlineResponse2002.md)
580
+ - [TalonOne::InlineResponse20020](docs/InlineResponse20020.md)
581
+ - [TalonOne::InlineResponse20021](docs/InlineResponse20021.md)
582
+ - [TalonOne::InlineResponse20022](docs/InlineResponse20022.md)
583
+ - [TalonOne::InlineResponse20023](docs/InlineResponse20023.md)
584
+ - [TalonOne::InlineResponse20024](docs/InlineResponse20024.md)
585
+ - [TalonOne::InlineResponse20025](docs/InlineResponse20025.md)
586
+ - [TalonOne::InlineResponse20026](docs/InlineResponse20026.md)
587
+ - [TalonOne::InlineResponse20027](docs/InlineResponse20027.md)
588
+ - [TalonOne::InlineResponse20028](docs/InlineResponse20028.md)
589
+ - [TalonOne::InlineResponse20029](docs/InlineResponse20029.md)
590
+ - [TalonOne::InlineResponse2003](docs/InlineResponse2003.md)
591
+ - [TalonOne::InlineResponse20030](docs/InlineResponse20030.md)
592
+ - [TalonOne::InlineResponse20031](docs/InlineResponse20031.md)
593
+ - [TalonOne::InlineResponse20032](docs/InlineResponse20032.md)
594
+ - [TalonOne::InlineResponse20033](docs/InlineResponse20033.md)
595
+ - [TalonOne::InlineResponse20034](docs/InlineResponse20034.md)
596
+ - [TalonOne::InlineResponse20035](docs/InlineResponse20035.md)
597
+ - [TalonOne::InlineResponse20036](docs/InlineResponse20036.md)
598
+ - [TalonOne::InlineResponse20037](docs/InlineResponse20037.md)
599
+ - [TalonOne::InlineResponse20038](docs/InlineResponse20038.md)
600
+ - [TalonOne::InlineResponse20039](docs/InlineResponse20039.md)
601
+ - [TalonOne::InlineResponse2004](docs/InlineResponse2004.md)
602
+ - [TalonOne::InlineResponse20040](docs/InlineResponse20040.md)
603
+ - [TalonOne::InlineResponse20041](docs/InlineResponse20041.md)
604
+ - [TalonOne::InlineResponse20042](docs/InlineResponse20042.md)
605
+ - [TalonOne::InlineResponse20043](docs/InlineResponse20043.md)
606
+ - [TalonOne::InlineResponse20044](docs/InlineResponse20044.md)
607
+ - [TalonOne::InlineResponse20045](docs/InlineResponse20045.md)
608
+ - [TalonOne::InlineResponse20046](docs/InlineResponse20046.md)
609
+ - [TalonOne::InlineResponse2005](docs/InlineResponse2005.md)
610
+ - [TalonOne::InlineResponse2006](docs/InlineResponse2006.md)
611
+ - [TalonOne::InlineResponse2007](docs/InlineResponse2007.md)
612
+ - [TalonOne::InlineResponse2008](docs/InlineResponse2008.md)
613
+ - [TalonOne::InlineResponse2009](docs/InlineResponse2009.md)
614
+ - [TalonOne::InlineResponse201](docs/InlineResponse201.md)
615
+ - [TalonOne::IntegrationCoupon](docs/IntegrationCoupon.md)
616
+ - [TalonOne::IntegrationCustomerSessionResponse](docs/IntegrationCustomerSessionResponse.md)
617
+ - [TalonOne::IntegrationEntity](docs/IntegrationEntity.md)
618
+ - [TalonOne::IntegrationEvent](docs/IntegrationEvent.md)
619
+ - [TalonOne::IntegrationEventV2Request](docs/IntegrationEventV2Request.md)
620
+ - [TalonOne::IntegrationProfileEntity](docs/IntegrationProfileEntity.md)
621
+ - [TalonOne::IntegrationRequest](docs/IntegrationRequest.md)
622
+ - [TalonOne::IntegrationState](docs/IntegrationState.md)
623
+ - [TalonOne::IntegrationStateV2](docs/IntegrationStateV2.md)
624
+ - [TalonOne::IntegrationStoreEntity](docs/IntegrationStoreEntity.md)
625
+ - [TalonOne::InventoryCoupon](docs/InventoryCoupon.md)
626
+ - [TalonOne::InventoryReferral](docs/InventoryReferral.md)
627
+ - [TalonOne::ItemAttribute](docs/ItemAttribute.md)
628
+ - [TalonOne::LedgerEntry](docs/LedgerEntry.md)
629
+ - [TalonOne::LedgerInfo](docs/LedgerInfo.md)
630
+ - [TalonOne::LedgerPointsEntryIntegrationAPI](docs/LedgerPointsEntryIntegrationAPI.md)
631
+ - [TalonOne::LedgerTransactionLogEntryIntegrationAPI](docs/LedgerTransactionLogEntryIntegrationAPI.md)
632
+ - [TalonOne::LibraryAttribute](docs/LibraryAttribute.md)
633
+ - [TalonOne::LimitConfig](docs/LimitConfig.md)
634
+ - [TalonOne::LimitCounter](docs/LimitCounter.md)
635
+ - [TalonOne::ListCampaignStoreBudgets](docs/ListCampaignStoreBudgets.md)
636
+ - [TalonOne::ListCampaignStoreBudgetsStore](docs/ListCampaignStoreBudgetsStore.md)
637
+ - [TalonOne::LoginParams](docs/LoginParams.md)
638
+ - [TalonOne::Loyalty](docs/Loyalty.md)
639
+ - [TalonOne::LoyaltyBalance](docs/LoyaltyBalance.md)
640
+ - [TalonOne::LoyaltyBalanceWithTier](docs/LoyaltyBalanceWithTier.md)
641
+ - [TalonOne::LoyaltyBalances](docs/LoyaltyBalances.md)
642
+ - [TalonOne::LoyaltyBalancesWithTiers](docs/LoyaltyBalancesWithTiers.md)
643
+ - [TalonOne::LoyaltyCard](docs/LoyaltyCard.md)
644
+ - [TalonOne::LoyaltyCardBalances](docs/LoyaltyCardBalances.md)
645
+ - [TalonOne::LoyaltyCardBatch](docs/LoyaltyCardBatch.md)
646
+ - [TalonOne::LoyaltyCardBatchResponse](docs/LoyaltyCardBatchResponse.md)
647
+ - [TalonOne::LoyaltyCardProfileRegistration](docs/LoyaltyCardProfileRegistration.md)
648
+ - [TalonOne::LoyaltyCardRegistration](docs/LoyaltyCardRegistration.md)
649
+ - [TalonOne::LoyaltyDashboardData](docs/LoyaltyDashboardData.md)
650
+ - [TalonOne::LoyaltyDashboardPointsBreakdown](docs/LoyaltyDashboardPointsBreakdown.md)
651
+ - [TalonOne::LoyaltyLedger](docs/LoyaltyLedger.md)
652
+ - [TalonOne::LoyaltyLedgerEntry](docs/LoyaltyLedgerEntry.md)
653
+ - [TalonOne::LoyaltyLedgerTransactions](docs/LoyaltyLedgerTransactions.md)
654
+ - [TalonOne::LoyaltyMembership](docs/LoyaltyMembership.md)
655
+ - [TalonOne::LoyaltyProgram](docs/LoyaltyProgram.md)
656
+ - [TalonOne::LoyaltyProgramBalance](docs/LoyaltyProgramBalance.md)
657
+ - [TalonOne::LoyaltyProgramEntity](docs/LoyaltyProgramEntity.md)
658
+ - [TalonOne::LoyaltyProgramLedgers](docs/LoyaltyProgramLedgers.md)
659
+ - [TalonOne::LoyaltyProgramTransaction](docs/LoyaltyProgramTransaction.md)
660
+ - [TalonOne::LoyaltySubLedger](docs/LoyaltySubLedger.md)
661
+ - [TalonOne::LoyaltyTier](docs/LoyaltyTier.md)
662
+ - [TalonOne::ManagementKey](docs/ManagementKey.md)
663
+ - [TalonOne::ManagerConfig](docs/ManagerConfig.md)
664
+ - [TalonOne::MessageLogEntries](docs/MessageLogEntries.md)
665
+ - [TalonOne::MessageLogEntry](docs/MessageLogEntry.md)
666
+ - [TalonOne::MessageLogRequest](docs/MessageLogRequest.md)
667
+ - [TalonOne::MessageLogResponse](docs/MessageLogResponse.md)
668
+ - [TalonOne::Meta](docs/Meta.md)
669
+ - [TalonOne::ModelReturn](docs/ModelReturn.md)
670
+ - [TalonOne::MultiApplicationEntity](docs/MultiApplicationEntity.md)
671
+ - [TalonOne::MultipleAttribute](docs/MultipleAttribute.md)
672
+ - [TalonOne::MultipleAudiences](docs/MultipleAudiences.md)
673
+ - [TalonOne::MultipleAudiencesItem](docs/MultipleAudiencesItem.md)
674
+ - [TalonOne::MultipleCustomerProfileIntegrationRequest](docs/MultipleCustomerProfileIntegrationRequest.md)
675
+ - [TalonOne::MultipleCustomerProfileIntegrationRequestItem](docs/MultipleCustomerProfileIntegrationRequestItem.md)
676
+ - [TalonOne::MultipleCustomerProfileIntegrationResponseV2](docs/MultipleCustomerProfileIntegrationResponseV2.md)
677
+ - [TalonOne::MultipleNewAttribute](docs/MultipleNewAttribute.md)
678
+ - [TalonOne::MultipleNewAudiences](docs/MultipleNewAudiences.md)
679
+ - [TalonOne::MutableEntity](docs/MutableEntity.md)
680
+ - [TalonOne::NewAccount](docs/NewAccount.md)
681
+ - [TalonOne::NewAccountSignUp](docs/NewAccountSignUp.md)
682
+ - [TalonOne::NewAdditionalCost](docs/NewAdditionalCost.md)
683
+ - [TalonOne::NewAppWideCouponDeletionJob](docs/NewAppWideCouponDeletionJob.md)
684
+ - [TalonOne::NewApplication](docs/NewApplication.md)
685
+ - [TalonOne::NewApplicationAPIKey](docs/NewApplicationAPIKey.md)
686
+ - [TalonOne::NewApplicationCIF](docs/NewApplicationCIF.md)
687
+ - [TalonOne::NewApplicationCIFExpression](docs/NewApplicationCIFExpression.md)
688
+ - [TalonOne::NewAttribute](docs/NewAttribute.md)
689
+ - [TalonOne::NewAudience](docs/NewAudience.md)
690
+ - [TalonOne::NewBaseNotification](docs/NewBaseNotification.md)
691
+ - [TalonOne::NewCampaign](docs/NewCampaign.md)
692
+ - [TalonOne::NewCampaignCollection](docs/NewCampaignCollection.md)
693
+ - [TalonOne::NewCampaignEvaluationGroup](docs/NewCampaignEvaluationGroup.md)
694
+ - [TalonOne::NewCampaignGroup](docs/NewCampaignGroup.md)
695
+ - [TalonOne::NewCampaignSet](docs/NewCampaignSet.md)
696
+ - [TalonOne::NewCampaignStoreBudget](docs/NewCampaignStoreBudget.md)
697
+ - [TalonOne::NewCampaignStoreBudgetStoreLimit](docs/NewCampaignStoreBudgetStoreLimit.md)
698
+ - [TalonOne::NewCampaignTemplate](docs/NewCampaignTemplate.md)
699
+ - [TalonOne::NewCatalog](docs/NewCatalog.md)
700
+ - [TalonOne::NewCollection](docs/NewCollection.md)
701
+ - [TalonOne::NewCouponCreationJob](docs/NewCouponCreationJob.md)
702
+ - [TalonOne::NewCouponDeletionJob](docs/NewCouponDeletionJob.md)
703
+ - [TalonOne::NewCoupons](docs/NewCoupons.md)
704
+ - [TalonOne::NewCouponsForMultipleRecipients](docs/NewCouponsForMultipleRecipients.md)
705
+ - [TalonOne::NewCustomEffect](docs/NewCustomEffect.md)
706
+ - [TalonOne::NewCustomerProfile](docs/NewCustomerProfile.md)
707
+ - [TalonOne::NewCustomerSession](docs/NewCustomerSession.md)
708
+ - [TalonOne::NewCustomerSessionV2](docs/NewCustomerSessionV2.md)
709
+ - [TalonOne::NewEvent](docs/NewEvent.md)
710
+ - [TalonOne::NewEventType](docs/NewEventType.md)
711
+ - [TalonOne::NewExternalInvitation](docs/NewExternalInvitation.md)
712
+ - [TalonOne::NewGiveawaysPool](docs/NewGiveawaysPool.md)
713
+ - [TalonOne::NewInternalAudience](docs/NewInternalAudience.md)
714
+ - [TalonOne::NewInvitation](docs/NewInvitation.md)
715
+ - [TalonOne::NewInviteEmail](docs/NewInviteEmail.md)
716
+ - [TalonOne::NewLoyaltyProgram](docs/NewLoyaltyProgram.md)
717
+ - [TalonOne::NewLoyaltyTier](docs/NewLoyaltyTier.md)
718
+ - [TalonOne::NewManagementKey](docs/NewManagementKey.md)
719
+ - [TalonOne::NewMultipleAudiencesItem](docs/NewMultipleAudiencesItem.md)
720
+ - [TalonOne::NewNotificationTest](docs/NewNotificationTest.md)
721
+ - [TalonOne::NewNotificationWebhook](docs/NewNotificationWebhook.md)
722
+ - [TalonOne::NewOutgoingIntegrationWebhook](docs/NewOutgoingIntegrationWebhook.md)
723
+ - [TalonOne::NewPassword](docs/NewPassword.md)
724
+ - [TalonOne::NewPasswordEmail](docs/NewPasswordEmail.md)
725
+ - [TalonOne::NewPicklist](docs/NewPicklist.md)
726
+ - [TalonOne::NewReferral](docs/NewReferral.md)
727
+ - [TalonOne::NewReferralsForMultipleAdvocates](docs/NewReferralsForMultipleAdvocates.md)
728
+ - [TalonOne::NewReturn](docs/NewReturn.md)
729
+ - [TalonOne::NewRevisionVersion](docs/NewRevisionVersion.md)
730
+ - [TalonOne::NewRole](docs/NewRole.md)
731
+ - [TalonOne::NewRoleV2](docs/NewRoleV2.md)
732
+ - [TalonOne::NewRuleset](docs/NewRuleset.md)
733
+ - [TalonOne::NewSamlConnection](docs/NewSamlConnection.md)
734
+ - [TalonOne::NewStore](docs/NewStore.md)
735
+ - [TalonOne::NewTemplateDef](docs/NewTemplateDef.md)
736
+ - [TalonOne::NewUser](docs/NewUser.md)
737
+ - [TalonOne::NewWebhook](docs/NewWebhook.md)
738
+ - [TalonOne::Notification](docs/Notification.md)
739
+ - [TalonOne::NotificationActivation](docs/NotificationActivation.md)
740
+ - [TalonOne::NotificationListItem](docs/NotificationListItem.md)
741
+ - [TalonOne::NotificationTest](docs/NotificationTest.md)
742
+ - [TalonOne::OktaEvent](docs/OktaEvent.md)
743
+ - [TalonOne::OktaEventPayload](docs/OktaEventPayload.md)
744
+ - [TalonOne::OktaEventPayloadData](docs/OktaEventPayloadData.md)
745
+ - [TalonOne::OktaEventTarget](docs/OktaEventTarget.md)
746
+ - [TalonOne::OneTimeCode](docs/OneTimeCode.md)
747
+ - [TalonOne::OutgoingIntegrationBrazePolicy](docs/OutgoingIntegrationBrazePolicy.md)
748
+ - [TalonOne::OutgoingIntegrationCleverTapPolicy](docs/OutgoingIntegrationCleverTapPolicy.md)
749
+ - [TalonOne::OutgoingIntegrationConfiguration](docs/OutgoingIntegrationConfiguration.md)
750
+ - [TalonOne::OutgoingIntegrationIterablePolicy](docs/OutgoingIntegrationIterablePolicy.md)
751
+ - [TalonOne::OutgoingIntegrationMoEngagePolicy](docs/OutgoingIntegrationMoEngagePolicy.md)
752
+ - [TalonOne::OutgoingIntegrationTemplate](docs/OutgoingIntegrationTemplate.md)
753
+ - [TalonOne::OutgoingIntegrationTemplateWithConfigurationDetails](docs/OutgoingIntegrationTemplateWithConfigurationDetails.md)
754
+ - [TalonOne::OutgoingIntegrationTemplates](docs/OutgoingIntegrationTemplates.md)
755
+ - [TalonOne::OutgoingIntegrationType](docs/OutgoingIntegrationType.md)
756
+ - [TalonOne::OutgoingIntegrationTypes](docs/OutgoingIntegrationTypes.md)
757
+ - [TalonOne::PatchItemCatalogAction](docs/PatchItemCatalogAction.md)
758
+ - [TalonOne::PatchManyItemsCatalogAction](docs/PatchManyItemsCatalogAction.md)
759
+ - [TalonOne::PendingPointsNotificationPolicy](docs/PendingPointsNotificationPolicy.md)
760
+ - [TalonOne::Picklist](docs/Picklist.md)
761
+ - [TalonOne::Product](docs/Product.md)
762
+ - [TalonOne::ProductSearchMatch](docs/ProductSearchMatch.md)
763
+ - [TalonOne::ProductSkuUnitAnalytics](docs/ProductSkuUnitAnalytics.md)
764
+ - [TalonOne::ProductUnitAnalytics](docs/ProductUnitAnalytics.md)
765
+ - [TalonOne::ProfileAudiencesChanges](docs/ProfileAudiencesChanges.md)
766
+ - [TalonOne::ProjectedTier](docs/ProjectedTier.md)
767
+ - [TalonOne::RedeemReferralEffectProps](docs/RedeemReferralEffectProps.md)
768
+ - [TalonOne::Referral](docs/Referral.md)
769
+ - [TalonOne::ReferralConstraints](docs/ReferralConstraints.md)
770
+ - [TalonOne::ReferralCreatedEffectProps](docs/ReferralCreatedEffectProps.md)
771
+ - [TalonOne::ReferralRejectionReason](docs/ReferralRejectionReason.md)
772
+ - [TalonOne::RejectCouponEffectProps](docs/RejectCouponEffectProps.md)
773
+ - [TalonOne::RejectReferralEffectProps](docs/RejectReferralEffectProps.md)
774
+ - [TalonOne::RemoveFromAudienceEffectProps](docs/RemoveFromAudienceEffectProps.md)
775
+ - [TalonOne::RemoveItemCatalogAction](docs/RemoveItemCatalogAction.md)
776
+ - [TalonOne::RemoveManyItemsCatalogAction](docs/RemoveManyItemsCatalogAction.md)
777
+ - [TalonOne::ReopenSessionResponse](docs/ReopenSessionResponse.md)
778
+ - [TalonOne::ReserveCouponEffectProps](docs/ReserveCouponEffectProps.md)
779
+ - [TalonOne::ReturnIntegrationRequest](docs/ReturnIntegrationRequest.md)
780
+ - [TalonOne::ReturnedCartItem](docs/ReturnedCartItem.md)
781
+ - [TalonOne::Revision](docs/Revision.md)
782
+ - [TalonOne::RevisionActivation](docs/RevisionActivation.md)
783
+ - [TalonOne::RevisionVersion](docs/RevisionVersion.md)
784
+ - [TalonOne::Role](docs/Role.md)
785
+ - [TalonOne::RoleAssign](docs/RoleAssign.md)
786
+ - [TalonOne::RoleMembership](docs/RoleMembership.md)
787
+ - [TalonOne::RoleV2](docs/RoleV2.md)
788
+ - [TalonOne::RoleV2ApplicationDetails](docs/RoleV2ApplicationDetails.md)
789
+ - [TalonOne::RoleV2Base](docs/RoleV2Base.md)
790
+ - [TalonOne::RoleV2PermissionSet](docs/RoleV2PermissionSet.md)
791
+ - [TalonOne::RoleV2Permissions](docs/RoleV2Permissions.md)
792
+ - [TalonOne::RoleV2RolesGroup](docs/RoleV2RolesGroup.md)
793
+ - [TalonOne::RollbackAddedLoyaltyPointsEffectProps](docs/RollbackAddedLoyaltyPointsEffectProps.md)
794
+ - [TalonOne::RollbackCouponEffectProps](docs/RollbackCouponEffectProps.md)
795
+ - [TalonOne::RollbackDeductedLoyaltyPointsEffectProps](docs/RollbackDeductedLoyaltyPointsEffectProps.md)
796
+ - [TalonOne::RollbackDiscountEffectProps](docs/RollbackDiscountEffectProps.md)
797
+ - [TalonOne::RollbackIncreasedAchievementProgressEffectProps](docs/RollbackIncreasedAchievementProgressEffectProps.md)
798
+ - [TalonOne::RollbackReferralEffectProps](docs/RollbackReferralEffectProps.md)
799
+ - [TalonOne::Rule](docs/Rule.md)
800
+ - [TalonOne::RuleFailureReason](docs/RuleFailureReason.md)
801
+ - [TalonOne::Ruleset](docs/Ruleset.md)
802
+ - [TalonOne::SSOConfig](docs/SSOConfig.md)
803
+ - [TalonOne::SamlConnection](docs/SamlConnection.md)
804
+ - [TalonOne::SamlConnectionInternal](docs/SamlConnectionInternal.md)
805
+ - [TalonOne::SamlConnectionMetadata](docs/SamlConnectionMetadata.md)
806
+ - [TalonOne::SamlLoginEndpoint](docs/SamlLoginEndpoint.md)
807
+ - [TalonOne::ScimBaseUser](docs/ScimBaseUser.md)
808
+ - [TalonOne::ScimBaseUserName](docs/ScimBaseUserName.md)
809
+ - [TalonOne::ScimNewUser](docs/ScimNewUser.md)
810
+ - [TalonOne::ScimPatchOperation](docs/ScimPatchOperation.md)
811
+ - [TalonOne::ScimPatchRequest](docs/ScimPatchRequest.md)
812
+ - [TalonOne::ScimResource](docs/ScimResource.md)
813
+ - [TalonOne::ScimResourceTypesListResponse](docs/ScimResourceTypesListResponse.md)
814
+ - [TalonOne::ScimSchemaResource](docs/ScimSchemaResource.md)
815
+ - [TalonOne::ScimSchemasListResponse](docs/ScimSchemasListResponse.md)
816
+ - [TalonOne::ScimServiceProviderConfigResponse](docs/ScimServiceProviderConfigResponse.md)
817
+ - [TalonOne::ScimServiceProviderConfigResponseBulk](docs/ScimServiceProviderConfigResponseBulk.md)
818
+ - [TalonOne::ScimServiceProviderConfigResponseChangePassword](docs/ScimServiceProviderConfigResponseChangePassword.md)
819
+ - [TalonOne::ScimServiceProviderConfigResponseFilter](docs/ScimServiceProviderConfigResponseFilter.md)
820
+ - [TalonOne::ScimServiceProviderConfigResponsePatch](docs/ScimServiceProviderConfigResponsePatch.md)
821
+ - [TalonOne::ScimServiceProviderConfigResponseSort](docs/ScimServiceProviderConfigResponseSort.md)
822
+ - [TalonOne::ScimUser](docs/ScimUser.md)
823
+ - [TalonOne::ScimUsersListResponse](docs/ScimUsersListResponse.md)
824
+ - [TalonOne::Session](docs/Session.md)
825
+ - [TalonOne::SetDiscountEffectProps](docs/SetDiscountEffectProps.md)
826
+ - [TalonOne::SetDiscountPerAdditionalCostEffectProps](docs/SetDiscountPerAdditionalCostEffectProps.md)
827
+ - [TalonOne::SetDiscountPerAdditionalCostPerItemEffectProps](docs/SetDiscountPerAdditionalCostPerItemEffectProps.md)
828
+ - [TalonOne::SetDiscountPerItemEffectProps](docs/SetDiscountPerItemEffectProps.md)
829
+ - [TalonOne::ShowBundleMetadataEffectProps](docs/ShowBundleMetadataEffectProps.md)
830
+ - [TalonOne::ShowNotificationEffectProps](docs/ShowNotificationEffectProps.md)
831
+ - [TalonOne::SlotDef](docs/SlotDef.md)
832
+ - [TalonOne::Store](docs/Store.md)
833
+ - [TalonOne::StrikethroughChangedItem](docs/StrikethroughChangedItem.md)
834
+ - [TalonOne::StrikethroughCustomEffectPerItemProps](docs/StrikethroughCustomEffectPerItemProps.md)
835
+ - [TalonOne::StrikethroughDebugResponse](docs/StrikethroughDebugResponse.md)
836
+ - [TalonOne::StrikethroughEffect](docs/StrikethroughEffect.md)
837
+ - [TalonOne::StrikethroughLabelingNotification](docs/StrikethroughLabelingNotification.md)
838
+ - [TalonOne::StrikethroughSetDiscountPerItemEffectProps](docs/StrikethroughSetDiscountPerItemEffectProps.md)
839
+ - [TalonOne::StrikethroughTrigger](docs/StrikethroughTrigger.md)
840
+ - [TalonOne::SummaryCampaignStoreBudget](docs/SummaryCampaignStoreBudget.md)
841
+ - [TalonOne::TalangAttribute](docs/TalangAttribute.md)
842
+ - [TalonOne::TalangAttributeVisibility](docs/TalangAttributeVisibility.md)
843
+ - [TalonOne::TemplateArgDef](docs/TemplateArgDef.md)
844
+ - [TalonOne::TemplateDef](docs/TemplateDef.md)
845
+ - [TalonOne::TemplateLimitConfig](docs/TemplateLimitConfig.md)
846
+ - [TalonOne::Tier](docs/Tier.md)
847
+ - [TalonOne::TierDowngradeNotificationPolicy](docs/TierDowngradeNotificationPolicy.md)
848
+ - [TalonOne::TierUpgradeNotificationPolicy](docs/TierUpgradeNotificationPolicy.md)
849
+ - [TalonOne::TierWillDowngradeNotificationPolicy](docs/TierWillDowngradeNotificationPolicy.md)
850
+ - [TalonOne::TierWillDowngradeNotificationTrigger](docs/TierWillDowngradeNotificationTrigger.md)
851
+ - [TalonOne::TimePoint](docs/TimePoint.md)
852
+ - [TalonOne::TrackEventV2Response](docs/TrackEventV2Response.md)
853
+ - [TalonOne::TransferLoyaltyCard](docs/TransferLoyaltyCard.md)
854
+ - [TalonOne::TriggerWebhookEffectProps](docs/TriggerWebhookEffectProps.md)
855
+ - [TalonOne::TwoFAConfig](docs/TwoFAConfig.md)
856
+ - [TalonOne::UpdateAccount](docs/UpdateAccount.md)
857
+ - [TalonOne::UpdateAchievement](docs/UpdateAchievement.md)
858
+ - [TalonOne::UpdateApplication](docs/UpdateApplication.md)
859
+ - [TalonOne::UpdateApplicationAPIKey](docs/UpdateApplicationAPIKey.md)
860
+ - [TalonOne::UpdateApplicationCIF](docs/UpdateApplicationCIF.md)
861
+ - [TalonOne::UpdateAttributeEffectProps](docs/UpdateAttributeEffectProps.md)
862
+ - [TalonOne::UpdateAudience](docs/UpdateAudience.md)
863
+ - [TalonOne::UpdateCampaign](docs/UpdateCampaign.md)
864
+ - [TalonOne::UpdateCampaignCollection](docs/UpdateCampaignCollection.md)
865
+ - [TalonOne::UpdateCampaignEvaluationGroup](docs/UpdateCampaignEvaluationGroup.md)
866
+ - [TalonOne::UpdateCampaignGroup](docs/UpdateCampaignGroup.md)
867
+ - [TalonOne::UpdateCampaignTemplate](docs/UpdateCampaignTemplate.md)
868
+ - [TalonOne::UpdateCatalog](docs/UpdateCatalog.md)
869
+ - [TalonOne::UpdateCollection](docs/UpdateCollection.md)
870
+ - [TalonOne::UpdateCoupon](docs/UpdateCoupon.md)
871
+ - [TalonOne::UpdateCouponBatch](docs/UpdateCouponBatch.md)
872
+ - [TalonOne::UpdateLoyaltyCard](docs/UpdateLoyaltyCard.md)
873
+ - [TalonOne::UpdateLoyaltyProgram](docs/UpdateLoyaltyProgram.md)
874
+ - [TalonOne::UpdateLoyaltyProgramTier](docs/UpdateLoyaltyProgramTier.md)
875
+ - [TalonOne::UpdatePicklist](docs/UpdatePicklist.md)
876
+ - [TalonOne::UpdateReferral](docs/UpdateReferral.md)
877
+ - [TalonOne::UpdateReferralBatch](docs/UpdateReferralBatch.md)
878
+ - [TalonOne::UpdateRole](docs/UpdateRole.md)
879
+ - [TalonOne::UpdateStore](docs/UpdateStore.md)
880
+ - [TalonOne::UpdateUser](docs/UpdateUser.md)
881
+ - [TalonOne::User](docs/User.md)
882
+ - [TalonOne::UserEntity](docs/UserEntity.md)
883
+ - [TalonOne::ValueMap](docs/ValueMap.md)
884
+ - [TalonOne::Webhook](docs/Webhook.md)
885
+ - [TalonOne::WebhookActivationLogEntry](docs/WebhookActivationLogEntry.md)
886
+ - [TalonOne::WebhookLogEntry](docs/WebhookLogEntry.md)
887
+ - [TalonOne::WebhookWithOutgoingIntegrationDetails](docs/WebhookWithOutgoingIntegrationDetails.md)
888
+ - [TalonOne::WillAwardGiveawayEffectProps](docs/WillAwardGiveawayEffectProps.md)
889
+
890
+ ## Authorization
891
+
892
+ Authentication schemes defined for the API:
846
893
 
847
894
  ### api_key_v1
848
895
 
849
-
850
896
  - **Type**: API key
851
897
  - **API key parameter name**: Authorization
852
898
  - **Location**: HTTP header
853
899
 
854
900
  ### management_key
855
901
 
856
-
857
902
  - **Type**: API key
858
903
  - **API key parameter name**: Authorization
859
904
  - **Location**: HTTP header
860
905
 
861
906
  ### manager_auth
862
907
 
863
-
864
908
  - **Type**: API key
865
909
  - **API key parameter name**: Authorization
866
910
  - **Location**: HTTP header