talon_one 6.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.
- checksums.yaml +4 -4
- data/.github/.example/.bundle/config +2 -0
- data/.github/.example/Gemfile +6 -0
- data/.github/.example/Gemfile.lock +47 -0
- data/.github/.example/example.rb +85 -0
- 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
- 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
- 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
- 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
- data/.github/.example/vendor/bundle/ruby/3.3.0/extensions/arm64-darwin-24/3.3.0/json-2.8.2/mkmf.log +177 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/.github/workflows/ruby.yml +41 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/.gitignore +8 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/.rspec +3 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/CHANGELOG.md +375 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/Gemfile +43 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/Guardfile +10 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/LICENSE +20 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/README.md +118 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/Rakefile +40 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/ethon.gemspec +26 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curl.rb +90 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/classes.rb +65 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/codes.rb +122 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/constants.rb +80 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/form_options.rb +37 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/functions.rb +58 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/infos.rb +151 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/messages.rb +19 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/options.rb +503 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/curls/settings.rb +12 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/callbacks.rb +149 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/debug_info.rb +47 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/features.rb +31 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/form.rb +107 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/header.rb +61 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/actionable.rb +157 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/custom.rb +29 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/delete.rb +25 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/get.rb +24 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/head.rb +24 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/options.rb +24 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/patch.rb +24 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/post.rb +26 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/postable.rb +32 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/put.rb +27 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http/putable.rb +25 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/http.rb +68 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/informations.rb +116 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/mirror.rb +36 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/operations.rb +64 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/options.rb +50 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/params.rb +29 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/queryable.rb +154 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/response_callbacks.rb +136 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy/util.rb +28 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/easy.rb +315 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/ethon_error.rb +9 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/global_init.rb +13 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/invalid_option.rb +13 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/invalid_value.rb +13 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/multi_add.rb +12 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/multi_fdset.rb +12 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/multi_remove.rb +12 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/multi_timeout.rb +13 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors/select.rb +13 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/errors.rb +17 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/libc.rb +21 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/loggable.rb +59 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/multi/operations.rb +228 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/multi/options.rb +117 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/multi/stack.rb +49 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/multi.rb +126 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon/version.rb +6 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/lib/ethon.rb +36 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/benchmarks.rb +104 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/memory_leaks.rb +114 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/perf_spec_helper.rb +37 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/support/memory_test_helpers.rb +76 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/support/os_memory_leak_tracker.rb +48 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/profile/support/ruby_object_leak_tracker.rb +49 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/curl_spec.rb +38 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/callbacks_spec.rb +81 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/debug_info_spec.rb +54 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/features_spec.rb +24 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/form_spec.rb +104 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/header_spec.rb +79 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/custom_spec.rb +177 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/delete_spec.rb +21 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/get_spec.rb +126 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/head_spec.rb +80 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/options_spec.rb +51 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/patch_spec.rb +51 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/post_spec.rb +317 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http/put_spec.rb +168 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/http_spec.rb +64 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/informations_spec.rb +126 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/mirror_spec.rb +47 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/operations_spec.rb +271 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/options_spec.rb +193 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/queryable_spec.rb +235 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/response_callbacks_spec.rb +152 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy/util_spec.rb +28 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/easy_spec.rb +203 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/libc_spec.rb +14 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/loggable_spec.rb +22 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/multi/operations_spec.rb +298 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/multi/options_spec.rb +182 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/multi/stack_spec.rb +80 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/ethon/multi_spec.rb +152 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/spec_helper.rb +28 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/support/localhost_server.rb +95 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ethon-0.16.0/spec/support/server.rb +115 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/CHANGELOG.md +456 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/COPYING +49 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/Gemfile +21 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/LICENSE +24 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/LICENSE.SPECS +22 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/README.md +137 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/Rakefile +206 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/ffi.gemspec +42 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/2.5/ffi_c.bundle +0 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/2.6/ffi_c.bundle +0 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/2.7/ffi_c.bundle +0 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/3.0/ffi_c.bundle +0 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/3.1/ffi_c.bundle +0 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/3.2/ffi_c.bundle +0 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/3.3/ffi_c.bundle +0 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/abstract_memory.rb +44 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/autopointer.rb +180 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/buffer.rb +4 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/callback.rb +4 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/compat.rb +43 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/data_converter.rb +67 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/dynamic_library.rb +118 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/enum.rb +302 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/errno.rb +43 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/ffi.rb +50 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/function.rb +71 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/io.rb +62 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/library.rb +576 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/library_path.rb +109 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/managedstruct.rb +84 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/memorypointer.rb +1 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/platform.rb +187 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/pointer.rb +167 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/struct.rb +317 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/struct_by_reference.rb +72 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/struct_layout.rb +96 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/struct_layout_builder.rb +227 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/tools/const_generator.rb +232 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/tools/generator.rb +105 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/tools/generator_task.rb +32 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/tools/struct_generator.rb +195 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/tools/types_generator.rb +137 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/types.rb +222 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/union.rb +43 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/variadic.rb +80 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi/version.rb +3 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/lib/ffi.rb +27 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/rakelib/ffi_gem_helper.rb +65 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/getlogin.rb +8 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/getpid.rb +8 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/gettimeofday.rb +18 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/hello.rb +8 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/hello_ractor.rb +11 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/inotify.rb +60 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/pty.rb +75 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/qsort.rb +20 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/samples/qsort_ractor.rb +28 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/abstract_memory.rbs +165 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/auto_pointer.rbs +27 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/buffer.rbs +18 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/data_converter.rbs +10 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/dynamic_library.rbs +9 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/enum.rbs +38 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/function.rbs +39 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/library.rbs +42 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/native_type.rbs +86 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/pointer.rbs +42 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/struct.rbs +76 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/struct_by_reference.rbs +11 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/struct_by_value.rbs +7 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/struct_layout.rbs +9 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/struct_layout_builder.rbs +5 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi/type.rbs +39 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/ffi-1.17.0-arm64-darwin/sig/ffi.rbs +26 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/BSDL +22 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/CHANGES.md +559 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/COPYING +56 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/LEGAL +60 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/README.md +195 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/fbuffer/fbuffer.h +184 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/generator/Makefile +270 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/generator/extconf.rb +10 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/generator/generator.c +1663 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/parser/Makefile +270 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/parser/extconf.rb +12 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/parser/parser.c +3238 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/ext/json/ext/parser/parser.rl +1465 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/json.gemspec +64 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/bigdecimal.rb +58 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/complex.rb +51 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/core.rb +12 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/date.rb +54 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/date_time.rb +67 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/exception.rb +49 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/ostruct.rb +54 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/range.rb +54 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/rational.rb +49 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/regexp.rb +48 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/set.rb +48 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/struct.rb +52 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/symbol.rb +47 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/add/time.rb +52 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/common.rb +876 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/ext/generator/state.rb +105 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/ext/generator.bundle +0 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/ext/parser.bundle +0 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/ext.rb +23 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/generic_object.rb +75 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/truffle_ruby/generator.rb +621 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json/version.rb +5 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/json-2.8.2/lib/json.rb +587 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/.github/workflows/ci.yml +30 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/.github/workflows/experimental.yml +33 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/.gitignore +8 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/.rspec +4 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/CHANGELOG.md +410 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/CONTRIBUTING.md +20 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/Gemfile +36 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/Guardfile +9 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/LICENSE +22 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/README.md +588 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/Rakefile +38 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/UPGRADE.md +55 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/rack/typhoeus/middleware/params_decoder/helper.rb +76 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/rack/typhoeus/middleware/params_decoder.rb +57 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/rack/typhoeus.rb +1 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/adapters/faraday.rb +180 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/cache/dalli.rb +28 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/cache/rails.rb +28 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/cache/redis.rb +35 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/config.rb +85 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/easy_factory.rb +206 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/errors/no_stub.rb +12 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/errors/typhoeus_error.rb +8 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/errors.rb +9 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/expectation.rb +217 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/addable.rb +23 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/before.rb +31 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/block_connection.rb +35 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/cacheable.rb +15 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/memoizable.rb +56 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/queueable.rb +83 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/runnable.rb +19 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra/stubbable.rb +28 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/hydra.rb +95 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/pool.rb +70 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/railtie.rb +12 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/actions.rb +125 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/before.rb +30 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/block_connection.rb +52 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/cacheable.rb +38 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/callbacks.rb +151 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/marshal.rb +22 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/memoizable.rb +38 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/operations.rb +40 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/responseable.rb +29 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/streamable.rb +34 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request/stubbable.rb +30 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/request.rb +223 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/response/cacheable.rb +14 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/response/header.rb +105 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/response/informations.rb +305 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/response/status.rb +106 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/response.rb +68 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus/version.rb +5 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/lib/typhoeus.rb +143 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/perf/profile.rb +14 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/perf/vs_nethttp.rb +64 -0
- 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
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/rack/typhoeus/middleware/params_decoder_spec.rb +31 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/spec_helper.rb +29 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/support/localhost_server.rb +94 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/support/memory_cache.rb +15 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/support/server.rb +116 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/adapters/faraday_spec.rb +339 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/cache/dalli_spec.rb +41 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/cache/redis_spec.rb +41 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/config_spec.rb +15 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/easy_factory_spec.rb +143 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/errors/no_stub_spec.rb +13 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/expectation_spec.rb +280 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/addable_spec.rb +22 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/before_spec.rb +98 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/block_connection_spec.rb +18 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/cacheable_spec.rb +88 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/memoizable_spec.rb +53 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/queueable_spec.rb +98 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/runnable_spec.rb +137 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra/stubbable_spec.rb +48 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/hydra_spec.rb +22 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/pool_spec.rb +137 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/actions_spec.rb +19 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/before_spec.rb +93 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/block_connection_spec.rb +75 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/cacheable_spec.rb +94 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/callbacks_spec.rb +91 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/marshal_spec.rb +60 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/memoizable_spec.rb +34 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/operations_spec.rb +101 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/responseable_spec.rb +13 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request/stubbable_spec.rb +45 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/request_spec.rb +256 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/response/header_spec.rb +147 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/response/informations_spec.rb +323 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/response/status_spec.rb +256 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus/response_spec.rb +100 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/spec/typhoeus_spec.rb +105 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/gems/typhoeus-1.4.1/typhoeus.gemspec +25 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/specifications/ethon-0.16.0.gemspec +24 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/specifications/ffi-1.17.0-arm64-darwin.gemspec +31 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/specifications/json-2.8.2.gemspec +0 -0
- data/.github/.example/vendor/bundle/ruby/3.3.0/specifications/typhoeus-1.4.1.gemspec +24 -0
- data/.github/dependabot.yml +10 -0
- data/.github/workflows/test.yml +75 -0
- data/README.md +546 -562
- data/docker-compose.yml +47 -0
- data/docs/AccountAnalytics.md +1 -1
- data/docs/Achievement.md +8 -0
- data/docs/AdditionalCampaignProperties.md +1 -1
- data/docs/AnalyticsProduct.md +23 -0
- data/docs/AnalyticsProductSKU.md +21 -0
- data/docs/ApplicationCampaignStats.md +2 -0
- data/docs/ApplicationCustomer.md +8 -8
- data/docs/ApplicationSession.md +2 -2
- data/docs/AudienceCustomer.md +2 -2
- data/docs/BaseLoyaltyProgram.md +3 -1
- data/docs/BulkOperationOnCampaigns.md +3 -1
- data/docs/Campaign.md +3 -1
- data/docs/CampaignTemplate.md +3 -1
- data/docs/CampaignTemplateCouponReservationSettings.md +19 -0
- data/docs/CampaignVersions.md +3 -1
- data/docs/Change.md +1 -1
- data/docs/CouponDeletionFilters.md +1 -1
- data/docs/CreateAchievement.md +9 -1
- data/docs/CustomerProfile.md +2 -2
- data/docs/CustomerProfileAudienceRequestItem.md +1 -1
- data/docs/CustomerSession.md +1 -1
- data/docs/CustomerSessionV2.md +10 -8
- data/docs/FeatureFlag.md +1 -1
- data/docs/GenerateCampaignDescription.md +2 -2
- data/docs/GenerateCampaignTags.md +2 -2
- data/docs/GenerateLoyaltyCard.md +3 -1
- data/docs/InlineResponse20020.md +1 -1
- data/docs/InlineResponse20021.md +4 -2
- data/docs/InlineResponse20022.md +3 -3
- data/docs/InlineResponse20023.md +1 -1
- data/docs/InlineResponse20024.md +1 -3
- data/docs/InlineResponse20025.md +1 -1
- data/docs/InlineResponse20026.md +2 -2
- data/docs/InlineResponse20027.md +2 -2
- data/docs/InlineResponse20028.md +3 -3
- data/docs/InlineResponse20029.md +5 -3
- data/docs/InlineResponse20030.md +1 -3
- data/docs/InlineResponse20031.md +1 -1
- data/docs/InlineResponse20032.md +3 -1
- data/docs/InlineResponse20033.md +3 -5
- data/docs/InlineResponse20034.md +5 -3
- data/docs/InlineResponse20035.md +3 -5
- data/docs/InlineResponse20036.md +1 -1
- data/docs/InlineResponse20037.md +1 -1
- data/docs/InlineResponse20038.md +1 -1
- data/docs/InlineResponse20039.md +1 -1
- data/docs/InlineResponse20040.md +1 -1
- data/docs/InlineResponse20041.md +4 -2
- data/docs/InlineResponse20042.md +2 -4
- data/docs/InlineResponse20043.md +1 -1
- data/docs/InlineResponse20044.md +5 -3
- data/docs/InlineResponse20045.md +1 -3
- data/docs/InlineResponse20046.md +3 -3
- data/docs/IntegrationApi.md +8 -8
- data/docs/IntegrationCustomerSessionResponse.md +1 -1
- data/docs/LedgerInfo.md +2 -2
- data/docs/ListCampaignStoreBudgets.md +23 -0
- data/docs/ListCampaignStoreBudgetsStore.md +21 -0
- data/docs/LoyaltyCard.md +4 -0
- data/docs/LoyaltyCardBatch.md +3 -1
- data/docs/LoyaltyLedger.md +1 -1
- data/docs/LoyaltyMembership.md +1 -1
- data/docs/LoyaltyProgram.md +5 -3
- data/docs/LoyaltyProgramBalance.md +2 -2
- data/docs/LoyaltyProgramEntity.md +5 -1
- data/docs/LoyaltyTier.md +6 -2
- data/docs/ManagementApi.md +114 -188
- data/docs/MessageLogEntry.md +10 -2
- data/docs/NewCampaignStoreBudget.md +21 -0
- data/docs/NewCampaignStoreBudgetStoreLimit.md +19 -0
- data/docs/NewCampaignTemplate.md +2 -0
- data/docs/NewCustomerSessionV2.md +4 -4
- data/docs/NewLoyaltyProgram.md +2 -0
- data/docs/NewLoyaltyTier.md +2 -2
- data/docs/NewPicklist.md +1 -1
- data/docs/NewWebhook.md +1 -1
- data/docs/Picklist.md +1 -1
- data/docs/Product.md +1 -1
- data/docs/ProductSearchMatch.md +21 -0
- data/docs/ProductSkuUnitAnalytics.md +23 -0
- data/docs/ProductUnitAnalytics.md +25 -0
- data/docs/ScimNewUser.md +1 -1
- data/docs/ScimServiceProviderConfigResponse.md +3 -1
- data/docs/ScimServiceProviderConfigResponseSort.md +17 -0
- data/docs/ScimUser.md +1 -1
- data/docs/Store.md +2 -2
- data/docs/StrikethroughDebugResponse.md +19 -0
- data/docs/SummaryCampaignStoreBudget.md +21 -0
- data/docs/TemplateArgDef.md +2 -0
- data/docs/UpdateAchievement.md +9 -1
- data/docs/UpdateCampaignTemplate.md +2 -0
- data/docs/UpdateLoyaltyProgram.md +2 -0
- data/docs/UpdateLoyaltyProgramTier.md +21 -0
- data/docs/UpdatePicklist.md +1 -1
- data/docs/User.md +2 -2
- data/docs/ValueMap.md +23 -0
- data/docs/Webhook.md +1 -1
- data/docs/WebhookLogEntry.md +1 -1
- data/docs/WebhookWithOutgoingIntegrationDetails.md +1 -1
- data/lib/talon_one/api/integration_api.rb +13 -13
- data/lib/talon_one/api/management_api.rb +156 -245
- data/lib/talon_one/models/account.rb +0 -1
- data/lib/talon_one/models/account_additional_cost.rb +0 -1
- data/lib/talon_one/models/achievement.rb +87 -2
- data/lib/talon_one/models/add_loyalty_points_effect_props.rb +11 -0
- data/lib/talon_one/models/additional_campaign_properties.rb +3 -3
- data/lib/talon_one/models/analytics_product.rb +252 -0
- data/lib/talon_one/models/analytics_product_sku.rb +242 -0
- data/lib/talon_one/models/application.rb +0 -1
- data/lib/talon_one/models/application_api_key.rb +0 -1
- data/lib/talon_one/models/application_campaign_analytics.rb +2 -2
- data/lib/talon_one/models/application_campaign_stats.rb +16 -1
- data/lib/talon_one/models/application_cif.rb +0 -1
- data/lib/talon_one/models/application_cif_expression.rb +0 -1
- data/lib/talon_one/models/application_customer.rb +4 -5
- data/lib/talon_one/models/application_event.rb +0 -1
- data/lib/talon_one/models/application_referee.rb +0 -1
- data/lib/talon_one/models/application_session.rb +1 -2
- data/lib/talon_one/models/async_coupon_deletion_job_response.rb +0 -1
- data/lib/talon_one/models/attribute.rb +0 -1
- data/lib/talon_one/models/audience.rb +0 -1
- data/lib/talon_one/models/audience_customer.rb +1 -2
- data/lib/talon_one/models/base_loyalty_program.rb +26 -4
- data/lib/talon_one/models/base_notification.rb +0 -1
- data/lib/talon_one/models/base_notification_webhook.rb +0 -1
- data/lib/talon_one/models/bulk_operation_on_campaigns.rb +16 -6
- data/lib/talon_one/models/campaign.rb +26 -5
- data/lib/talon_one/models/campaign_analytics.rb +0 -1
- data/lib/talon_one/models/campaign_collection.rb +0 -1
- data/lib/talon_one/models/campaign_collection_without_payload.rb +0 -1
- data/lib/talon_one/models/campaign_evaluation_group.rb +0 -1
- data/lib/talon_one/models/campaign_group.rb +0 -1
- data/lib/talon_one/models/campaign_set.rb +0 -1
- data/lib/talon_one/models/campaign_store_budget.rb +0 -1
- data/lib/talon_one/models/campaign_template.rb +10 -2
- data/lib/talon_one/models/campaign_template_coupon_reservation_settings.rb +243 -0
- data/lib/talon_one/models/campaign_versions.rb +45 -1
- data/lib/talon_one/models/card_ledger_transaction_log_entry.rb +11 -0
- data/lib/talon_one/models/card_ledger_transaction_log_entry_integration_api.rb +11 -0
- data/lib/talon_one/models/catalog.rb +0 -1
- data/lib/talon_one/models/catalog_item.rb +0 -1
- data/lib/talon_one/models/change.rb +0 -1
- data/lib/talon_one/models/code_generator_settings.rb +11 -0
- data/lib/talon_one/models/collection.rb +0 -1
- data/lib/talon_one/models/collection_item.rb +0 -1
- data/lib/talon_one/models/collection_without_payload.rb +0 -1
- data/lib/talon_one/models/coupon.rb +0 -1
- data/lib/talon_one/models/coupon_creation_job.rb +0 -1
- data/lib/talon_one/models/coupon_deletion_filters.rb +0 -2
- data/lib/talon_one/models/coupon_deletion_job.rb +0 -1
- data/lib/talon_one/models/create_achievement.rb +90 -4
- data/lib/talon_one/models/custom_effect.rb +0 -1
- data/lib/talon_one/models/customer_profile.rb +1 -2
- data/lib/talon_one/models/customer_profile_audience_request_item.rb +1 -1
- data/lib/talon_one/models/customer_profile_integration_request_v2.rb +1 -1
- data/lib/talon_one/models/customer_session.rb +0 -1
- data/lib/talon_one/models/customer_session_v2.rb +20 -10
- data/lib/talon_one/models/deactivate_user_request.rb +0 -1
- data/lib/talon_one/models/deduct_loyalty_points_effect_props.rb +11 -0
- data/lib/talon_one/models/effect.rb +1 -1
- data/lib/talon_one/models/environment.rb +0 -1
- data/lib/talon_one/models/event.rb +0 -1
- data/lib/talon_one/models/event_type.rb +0 -1
- data/lib/talon_one/models/event_v2.rb +0 -1
- data/lib/talon_one/models/export.rb +0 -1
- data/lib/talon_one/models/features_feed.rb +0 -1
- data/lib/talon_one/models/generate_campaign_description.rb +11 -11
- data/lib/talon_one/models/generate_campaign_tags.rb +11 -11
- data/lib/talon_one/models/generate_loyalty_card.rb +40 -4
- data/lib/talon_one/models/giveaway.rb +0 -1
- data/lib/talon_one/models/import.rb +0 -1
- data/lib/talon_one/models/inline_response20020.rb +1 -1
- data/lib/talon_one/models/inline_response20021.rb +11 -7
- data/lib/talon_one/models/inline_response20022.rb +10 -10
- data/lib/talon_one/models/inline_response20023.rb +1 -1
- data/lib/talon_one/models/inline_response20024.rb +6 -10
- data/lib/talon_one/models/inline_response20025.rb +1 -1
- data/lib/talon_one/models/inline_response20026.rb +1 -6
- data/lib/talon_one/models/inline_response20027.rb +6 -1
- data/lib/talon_one/models/inline_response20028.rb +11 -11
- data/lib/talon_one/models/inline_response20029.rb +11 -7
- data/lib/talon_one/models/inline_response20030.rb +2 -11
- data/lib/talon_one/models/inline_response20031.rb +1 -1
- data/lib/talon_one/models/inline_response20032.rb +11 -2
- data/lib/talon_one/models/inline_response20033.rb +7 -11
- data/lib/talon_one/models/inline_response20034.rb +11 -7
- data/lib/talon_one/models/inline_response20035.rb +7 -11
- data/lib/talon_one/models/inline_response20036.rb +1 -1
- data/lib/talon_one/models/inline_response20037.rb +1 -1
- data/lib/talon_one/models/inline_response20038.rb +1 -1
- data/lib/talon_one/models/inline_response20039.rb +1 -1
- data/lib/talon_one/models/inline_response20040.rb +1 -1
- data/lib/talon_one/models/inline_response20041.rb +11 -7
- data/lib/talon_one/models/inline_response20042.rb +7 -11
- data/lib/talon_one/models/inline_response20043.rb +1 -1
- data/lib/talon_one/models/inline_response20044.rb +11 -7
- data/lib/talon_one/models/inline_response20045.rb +2 -11
- data/lib/talon_one/models/inline_response20046.rb +6 -1
- data/lib/talon_one/models/integration_coupon.rb +0 -1
- data/lib/talon_one/models/integration_customer_session_response.rb +1 -0
- data/lib/talon_one/models/integration_event.rb +0 -1
- data/lib/talon_one/models/integration_event_v2_request.rb +0 -1
- data/lib/talon_one/models/inventory_coupon.rb +0 -1
- data/lib/talon_one/models/inventory_referral.rb +0 -1
- data/lib/talon_one/models/item_attribute.rb +0 -1
- data/lib/talon_one/models/ledger_entry.rb +1 -1
- data/lib/talon_one/models/ledger_info.rb +3 -3
- data/lib/talon_one/models/library_attribute.rb +0 -1
- data/lib/talon_one/models/limit_counter.rb +0 -1
- data/lib/talon_one/models/list_campaign_store_budgets.rb +248 -0
- data/lib/talon_one/models/list_campaign_store_budgets_store.rb +239 -0
- data/lib/talon_one/models/login_params.rb +0 -1
- data/lib/talon_one/models/loyalty_balance_with_tier.rb +1 -1
- data/lib/talon_one/models/loyalty_card.rb +54 -2
- data/lib/talon_one/models/loyalty_card_balances.rb +1 -1
- data/lib/talon_one/models/loyalty_card_batch.rb +13 -5
- data/lib/talon_one/models/loyalty_program.rb +25 -3
- data/lib/talon_one/models/loyalty_program_balance.rb +2 -2
- data/lib/talon_one/models/loyalty_program_entity.rb +24 -4
- data/lib/talon_one/models/loyalty_program_transaction.rb +11 -0
- data/lib/talon_one/models/loyalty_tier.rb +24 -4
- data/lib/talon_one/models/management_key.rb +0 -1
- data/lib/talon_one/models/message_log_entry.rb +67 -7
- data/lib/talon_one/models/model_return.rb +0 -1
- data/lib/talon_one/models/multiple_audiences_item.rb +0 -1
- data/lib/talon_one/models/multiple_customer_profile_integration_request_item.rb +1 -1
- data/lib/talon_one/models/new_account_sign_up.rb +0 -1
- data/lib/talon_one/models/new_additional_cost.rb +0 -1
- data/lib/talon_one/models/new_application_api_key.rb +0 -1
- data/lib/talon_one/models/new_attribute.rb +0 -1
- data/lib/talon_one/models/new_audience.rb +0 -1
- data/lib/talon_one/models/new_base_notification.rb +0 -1
- data/lib/talon_one/models/new_campaign.rb +0 -1
- data/lib/talon_one/models/new_campaign_collection.rb +0 -1
- data/lib/talon_one/models/new_campaign_set.rb +0 -1
- data/lib/talon_one/models/new_campaign_store_budget.rb +283 -0
- data/lib/talon_one/models/new_campaign_store_budget_store_limit.rb +227 -0
- data/lib/talon_one/models/new_campaign_template.rb +10 -1
- data/lib/talon_one/models/new_catalog.rb +0 -1
- data/lib/talon_one/models/new_collection.rb +0 -1
- data/lib/talon_one/models/new_coupon_creation_job.rb +0 -1
- data/lib/talon_one/models/new_coupons.rb +0 -1
- data/lib/talon_one/models/new_coupons_for_multiple_recipients.rb +0 -1
- data/lib/talon_one/models/new_custom_effect.rb +0 -1
- data/lib/talon_one/models/new_customer_session.rb +0 -1
- data/lib/talon_one/models/new_customer_session_v2.rb +3 -3
- data/lib/talon_one/models/new_event.rb +0 -1
- data/lib/talon_one/models/new_event_type.rb +0 -1
- data/lib/talon_one/models/new_loyalty_program.rb +24 -2
- data/lib/talon_one/models/new_loyalty_tier.rb +2 -2
- data/lib/talon_one/models/new_management_key.rb +0 -1
- data/lib/talon_one/models/new_multiple_audiences_item.rb +0 -1
- data/lib/talon_one/models/new_referral.rb +0 -1
- data/lib/talon_one/models/new_referrals_for_multiple_advocates.rb +0 -1
- data/lib/talon_one/models/new_role.rb +0 -1
- data/lib/talon_one/models/new_role_v2.rb +0 -1
- data/lib/talon_one/models/new_saml_connection.rb +1 -1
- data/lib/talon_one/models/new_store.rb +0 -1
- data/lib/talon_one/models/new_user.rb +0 -1
- data/lib/talon_one/models/new_webhook.rb +1 -2
- data/lib/talon_one/models/outgoing_integration_template_with_configuration_details.rb +0 -1
- data/lib/talon_one/models/picklist.rb +0 -1
- data/lib/talon_one/models/product.rb +1 -1
- data/lib/talon_one/models/product_search_match.rb +237 -0
- data/lib/talon_one/models/product_sku_unit_analytics.rb +256 -0
- data/lib/talon_one/models/product_unit_analytics.rb +271 -0
- data/lib/talon_one/models/referral.rb +0 -1
- data/lib/talon_one/models/revision.rb +0 -1
- data/lib/talon_one/models/revision_version.rb +0 -1
- data/lib/talon_one/models/role.rb +0 -1
- data/lib/talon_one/models/role_assign.rb +0 -1
- data/lib/talon_one/models/role_v2.rb +0 -1
- data/lib/talon_one/models/rollback_added_loyalty_points_effect_props.rb +11 -0
- data/lib/talon_one/models/rollback_deducted_loyalty_points_effect_props.rb +11 -0
- data/lib/talon_one/models/ruleset.rb +0 -1
- data/lib/talon_one/models/saml_connection.rb +1 -1
- data/lib/talon_one/models/scim_new_user.rb +5 -0
- data/lib/talon_one/models/scim_service_provider_config_response.rb +13 -4
- data/lib/talon_one/models/scim_service_provider_config_response_sort.rb +208 -0
- data/lib/talon_one/models/scim_user.rb +5 -0
- data/lib/talon_one/models/store.rb +1 -2
- data/lib/talon_one/models/strikethrough_debug_response.rb +221 -0
- data/lib/talon_one/models/summary_campaign_store_budget.rb +280 -0
- data/lib/talon_one/models/talang_attribute.rb +0 -1
- data/lib/talon_one/models/template_arg_def.rb +11 -2
- data/lib/talon_one/models/template_def.rb +0 -1
- data/lib/talon_one/models/template_limit_config.rb +0 -1
- data/lib/talon_one/models/transfer_loyalty_card.rb +11 -0
- data/lib/talon_one/models/update_achievement.rb +90 -4
- data/lib/talon_one/models/update_campaign_evaluation_group.rb +0 -1
- data/lib/talon_one/models/update_campaign_group.rb +0 -1
- data/lib/talon_one/models/update_campaign_template.rb +10 -1
- data/lib/talon_one/models/update_coupon.rb +0 -1
- data/lib/talon_one/models/update_coupon_batch.rb +0 -1
- data/lib/talon_one/models/update_loyalty_program.rb +24 -2
- data/lib/talon_one/models/update_loyalty_program_tier.rb +257 -0
- data/lib/talon_one/models/update_picklist.rb +0 -1
- data/lib/talon_one/models/user.rb +0 -1
- data/lib/talon_one/models/value_map.rb +245 -0
- data/lib/talon_one/models/webhook.rb +1 -2
- data/lib/talon_one/models/webhook_log_entry.rb +1 -1
- data/lib/talon_one/models/webhook_with_outgoing_integration_details.rb +1 -2
- data/lib/talon_one/version.rb +1 -1
- data/lib/talon_one.rb +15 -4
- data/spec/api/integration_api_spec.rb +5 -5
- data/spec/api/management_api_spec.rb +58 -76
- data/spec/models/achievement_spec.rb +32 -0
- data/spec/models/additional_campaign_properties_spec.rb +1 -1
- data/spec/models/analytics_product_sku_spec.rb +53 -0
- data/spec/models/analytics_product_spec.rb +59 -0
- data/spec/models/application_campaign_analytics_spec.rb +1 -1
- data/spec/models/application_campaign_stats_spec.rb +6 -0
- data/spec/models/base_loyalty_program_spec.rb +10 -0
- data/spec/models/bulk_operation_on_campaigns_spec.rb +7 -1
- data/spec/models/campaign_spec.rb +11 -1
- data/spec/models/campaign_template_coupon_reservation_settings_spec.rb +47 -0
- data/spec/models/campaign_template_spec.rb +6 -0
- data/spec/models/campaign_versions_spec.rb +10 -0
- data/spec/models/create_achievement_spec.rb +32 -0
- data/spec/models/customer_session_v2_spec.rb +6 -0
- data/spec/models/generate_campaign_description_spec.rb +1 -1
- data/spec/models/generate_campaign_tags_spec.rb +1 -1
- data/spec/models/generate_loyalty_card_spec.rb +6 -0
- data/spec/models/inline_response20021_spec.rb +6 -0
- data/spec/models/inline_response20022_spec.rb +2 -2
- data/spec/models/inline_response20024_spec.rb +0 -6
- data/spec/models/inline_response20028_spec.rb +1 -1
- data/spec/models/inline_response20029_spec.rb +6 -0
- data/spec/models/inline_response20030_spec.rb +0 -6
- data/spec/models/inline_response20032_spec.rb +6 -0
- data/spec/models/inline_response20033_spec.rb +0 -6
- data/spec/models/inline_response20034_spec.rb +6 -0
- data/spec/models/inline_response20035_spec.rb +0 -6
- data/spec/models/inline_response20041_spec.rb +6 -0
- data/spec/models/inline_response20042_spec.rb +0 -6
- data/spec/models/inline_response20044_spec.rb +6 -0
- data/spec/models/inline_response20045_spec.rb +0 -6
- data/spec/models/limit_config_spec.rb +1 -1
- data/spec/models/list_campaign_store_budgets_spec.rb +59 -0
- data/spec/models/list_campaign_store_budgets_store_spec.rb +53 -0
- data/spec/models/loyalty_card_batch_spec.rb +6 -0
- data/spec/models/loyalty_card_spec.rb +12 -0
- data/spec/models/loyalty_program_entity_spec.rb +12 -0
- data/spec/models/loyalty_program_spec.rb +10 -0
- data/spec/models/loyalty_tier_spec.rb +12 -0
- data/spec/models/message_log_entry_spec.rb +25 -1
- data/spec/models/new_campaign_store_budget_spec.rb +61 -0
- data/spec/models/new_campaign_store_budget_store_limit_spec.rb +47 -0
- data/spec/models/new_campaign_template_spec.rb +6 -0
- data/spec/models/new_loyalty_program_spec.rb +10 -0
- data/spec/models/product_search_match_spec.rb +53 -0
- data/spec/models/product_sku_unit_analytics_spec.rb +59 -0
- data/spec/models/product_unit_analytics_spec.rb +65 -0
- data/spec/models/scim_service_provider_config_response_sort_spec.rb +41 -0
- data/spec/models/scim_service_provider_config_response_spec.rb +6 -0
- data/spec/models/strikethrough_debug_response_spec.rb +47 -0
- data/spec/models/summary_campaign_store_budget_spec.rb +61 -0
- data/spec/models/template_arg_def_spec.rb +6 -0
- data/spec/models/template_limit_config_spec.rb +1 -1
- data/spec/models/update_achievement_spec.rb +32 -0
- data/spec/models/update_campaign_template_spec.rb +6 -0
- data/spec/models/update_loyalty_program_spec.rb +10 -0
- data/spec/models/update_loyalty_program_tier_spec.rb +53 -0
- data/spec/models/value_map_spec.rb +59 -0
- metadata +447 -6
data/README.md
CHANGED
@@ -1,30 +1,16 @@
|
|
1
|
-
#
|
1
|
+
# Talon.One Ruby SDK
|
2
2
|
|
3
|
-
|
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
|
-
|
7
|
+
### Gemfile
|
22
8
|
|
23
|
-
|
24
|
-
- Package version: 6.0.0
|
25
|
-
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
9
|
+
Add this to the Gemfile:
|
26
10
|
|
27
|
-
|
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
|
-
|
23
|
+
### Local installation
|
24
|
+
|
25
|
+
To install the gem locally:
|
38
26
|
|
39
27
|
```shell
|
40
|
-
gem install ./talon_one-
|
28
|
+
gem install ./talon_one-7.0.0.gem
|
41
29
|
```
|
42
30
|
|
43
|
-
|
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', '~> 6.0.0'
|
31
|
+
For development, run `gem install --dev ./talon_one-7.0.0.gem` to install the development dependencies.
|
50
32
|
|
51
|
-
###
|
33
|
+
### RubyGems
|
52
34
|
|
53
|
-
|
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
|
-
|
38
|
+
gem install talon_one
|
63
39
|
```
|
64
40
|
|
65
|
-
## Getting
|
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
|
170
|
+
## Documentation for API endpoints
|
193
171
|
|
194
|
-
All
|
172
|
+
All URLs are relative to `https://yourbaseurl.talon.one`.
|
195
173
|
|
196
174
|
Class | Method | HTTP request | Description
|
197
175
|
------------ | ------------- | ------------- | -------------
|
@@ -206,7 +184,7 @@ Class | Method | HTTP request | Description
|
|
206
184
|
*TalonOne::IntegrationApi* | [**generate_loyalty_card**](docs/IntegrationApi.md#generate_loyalty_card) | **POST** /v1/loyalty_programs/{loyaltyProgramId}/cards | Generate loyalty card
|
207
185
|
*TalonOne::IntegrationApi* | [**get_customer_inventory**](docs/IntegrationApi.md#get_customer_inventory) | **GET** /v1/customer_profiles/{integrationId}/inventory | List customer data
|
208
186
|
*TalonOne::IntegrationApi* | [**get_customer_session**](docs/IntegrationApi.md#get_customer_session) | **GET** /v2/customer_sessions/{customerSessionId} | Get customer session
|
209
|
-
*TalonOne::IntegrationApi* | [**get_loyalty_balances**](docs/IntegrationApi.md#get_loyalty_balances) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/balances | Get customer's loyalty
|
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
|
210
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
|
211
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
|
212
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
|
@@ -283,7 +261,6 @@ Class | Method | HTTP request | Description
|
|
283
261
|
*TalonOne::ManagementApi* | [**get_achievement**](docs/ManagementApi.md#get_achievement) | **GET** /v1/applications/{applicationId}/campaigns/{campaignId}/achievements/{achievementId} | Get achievement
|
284
262
|
*TalonOne::ManagementApi* | [**get_additional_cost**](docs/ManagementApi.md#get_additional_cost) | **GET** /v1/additional_costs/{additionalCostId} | Get additional cost
|
285
263
|
*TalonOne::ManagementApi* | [**get_additional_costs**](docs/ManagementApi.md#get_additional_costs) | **GET** /v1/additional_costs | List additional costs
|
286
|
-
*TalonOne::ManagementApi* | [**get_all_access_logs**](docs/ManagementApi.md#get_all_access_logs) | **GET** /v1/access_logs | List access logs
|
287
264
|
*TalonOne::ManagementApi* | [**get_application**](docs/ManagementApi.md#get_application) | **GET** /v1/applications/{applicationId} | Get Application
|
288
265
|
*TalonOne::ManagementApi* | [**get_application_api_health**](docs/ManagementApi.md#get_application_api_health) | **GET** /v1/applications/{applicationId}/health_report | Get Application health
|
289
266
|
*TalonOne::ManagementApi* | [**get_application_customer**](docs/ManagementApi.md#get_application_customer) | **GET** /v1/applications/{applicationId}/customers/{customerId} | Get application's customer
|
@@ -391,536 +368,543 @@ Class | Method | HTTP request | Description
|
|
391
368
|
*TalonOne::ManagementApi* | [**update_store**](docs/ManagementApi.md#update_store) | **PUT** /v1/applications/{applicationId}/stores/{storeId} | Update store
|
392
369
|
*TalonOne::ManagementApi* | [**update_user**](docs/ManagementApi.md#update_user) | **PUT** /v1/users/{userId} | Update user
|
393
370
|
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
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:
|
906
893
|
|
907
894
|
### api_key_v1
|
908
895
|
|
909
|
-
|
910
896
|
- **Type**: API key
|
911
897
|
- **API key parameter name**: Authorization
|
912
898
|
- **Location**: HTTP header
|
913
899
|
|
914
900
|
### management_key
|
915
901
|
|
916
|
-
|
917
902
|
- **Type**: API key
|
918
903
|
- **API key parameter name**: Authorization
|
919
904
|
- **Location**: HTTP header
|
920
905
|
|
921
906
|
### manager_auth
|
922
907
|
|
923
|
-
|
924
908
|
- **Type**: API key
|
925
909
|
- **API key parameter name**: Authorization
|
926
910
|
- **Location**: HTTP header
|