talon_one 6.0.0 → 8.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 +563 -562
- data/docker-compose.yml +47 -0
- data/docs/AccountAnalytics.md +1 -1
- data/docs/Achievement.md +14 -4
- data/docs/AchievementAdditionalProperties.md +5 -3
- data/docs/AchievementProgress.md +3 -15
- data/docs/AddFreeItemEffectProps.md +3 -1
- data/docs/AdditionalCampaignProperties.md +5 -3
- data/docs/AnalyticsProduct.md +23 -0
- data/docs/AnalyticsProductSKU.md +21 -0
- data/docs/ApplicationCIF.md +1 -1
- data/docs/ApplicationCIFExpression.md +1 -1
- data/docs/ApplicationCampaignStats.md +2 -0
- data/docs/ApplicationCustomer.md +8 -8
- data/docs/ApplicationEntity.md +1 -1
- data/docs/ApplicationEvent.md +1 -1
- data/docs/ApplicationReferee.md +1 -1
- data/docs/ApplicationSession.md +4 -4
- data/docs/Audience.md +1 -1
- data/docs/AudienceCustomer.md +2 -2
- data/docs/BaseLoyaltyProgram.md +3 -1
- data/docs/Binding.md +1 -1
- data/docs/BulkOperationOnCampaigns.md +3 -1
- data/docs/Campaign.md +7 -3
- data/docs/CampaignEvaluationGroup.md +1 -1
- data/docs/CampaignNotificationPolicy.md +3 -1
- data/docs/CampaignSet.md +1 -1
- data/docs/CampaignStoreBudget.md +1 -1
- data/docs/CampaignTemplate.md +3 -1
- data/docs/CampaignTemplateCouponReservationSettings.md +19 -0
- data/docs/CampaignVersions.md +3 -1
- data/docs/CardExpiringPointsNotificationPolicy.md +3 -1
- data/docs/CatalogsStrikethroughNotificationPolicy.md +3 -1
- data/docs/Change.md +1 -1
- data/docs/CouponCreationJob.md +1 -1
- data/docs/CouponDeletionFilters.md +1 -1
- data/docs/CouponDeletionJob.md +1 -1
- data/docs/CouponsNotificationPolicy.md +5 -1
- data/docs/CreateAchievement.md +10 -2
- data/docs/CustomerInventory.md +1 -1
- data/docs/CustomerProfile.md +2 -2
- data/docs/CustomerProfileAudienceRequestItem.md +1 -1
- data/docs/CustomerSession.md +2 -2
- data/docs/CustomerSessionV2.md +8 -8
- data/docs/Environment.md +1 -1
- data/docs/Event.md +1 -1
- data/docs/ExpiringCouponsNotificationPolicy.md +3 -1
- data/docs/ExpiringPointsNotificationPolicy.md +3 -1
- 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/InlineResponse2001.md +3 -3
- data/docs/InlineResponse20010.md +3 -3
- data/docs/InlineResponse20011.md +3 -3
- data/docs/InlineResponse20012.md +1 -1
- data/docs/InlineResponse20013.md +1 -1
- data/docs/InlineResponse20014.md +1 -1
- data/docs/InlineResponse20015.md +3 -3
- data/docs/InlineResponse20016.md +3 -3
- data/docs/InlineResponse20017.md +3 -5
- data/docs/InlineResponse20018.md +2 -2
- data/docs/InlineResponse20019.md +3 -3
- data/docs/InlineResponse2002.md +3 -3
- data/docs/InlineResponse20020.md +5 -3
- data/docs/InlineResponse20021.md +3 -3
- data/docs/InlineResponse20022.md +3 -5
- data/docs/InlineResponse20023.md +3 -5
- data/docs/InlineResponse20024.md +4 -4
- data/docs/InlineResponse20025.md +4 -2
- data/docs/InlineResponse20026.md +4 -2
- data/docs/InlineResponse20027.md +2 -2
- data/docs/InlineResponse20028.md +1 -1
- data/docs/InlineResponse20029.md +3 -3
- data/docs/InlineResponse2003.md +1 -1
- data/docs/InlineResponse20030.md +2 -4
- data/docs/InlineResponse20031.md +3 -3
- data/docs/InlineResponse20032.md +3 -1
- data/docs/InlineResponse20033.md +1 -3
- data/docs/InlineResponse20034.md +3 -3
- data/docs/InlineResponse20035.md +1 -1
- data/docs/InlineResponse20036.md +1 -1
- data/docs/InlineResponse20037.md +5 -3
- data/docs/InlineResponse20038.md +1 -1
- data/docs/InlineResponse20039.md +1 -1
- data/docs/InlineResponse2004.md +1 -1
- data/docs/InlineResponse20040.md +1 -1
- data/docs/InlineResponse20041.md +1 -1
- data/docs/InlineResponse20042.md +2 -4
- data/docs/InlineResponse20043.md +1 -1
- data/docs/InlineResponse20044.md +4 -2
- data/docs/InlineResponse20045.md +3 -5
- data/docs/InlineResponse20046.md +3 -3
- data/docs/InlineResponse20047.md +5 -3
- data/docs/InlineResponse2005.md +3 -3
- data/docs/InlineResponse2006.md +3 -3
- data/docs/InlineResponse2007.md +1 -1
- data/docs/InlineResponse2008.md +1 -1
- data/docs/InlineResponse2009.md +3 -3
- data/docs/IntegrationApi.md +164 -26
- data/docs/IntegrationCustomerSessionResponse.md +1 -1
- data/docs/LedgerInfo.md +6 -2
- data/docs/LimitCounter.md +1 -1
- data/docs/ListCampaignStoreBudgets.md +23 -0
- data/docs/ListCampaignStoreBudgetsStore.md +21 -0
- data/docs/LoyaltyBalance.md +3 -1
- data/docs/LoyaltyBalanceWithTier.md +2 -0
- data/docs/LoyaltyBalances.md +1 -1
- data/docs/LoyaltyBalancesWithTiers.md +1 -1
- data/docs/LoyaltyCard.md +4 -0
- data/docs/LoyaltyCardBalances.md +1 -1
- data/docs/LoyaltyCardBatch.md +3 -1
- data/docs/LoyaltyLedger.md +1 -1
- data/docs/LoyaltyLedgerEntry.md +3 -1
- data/docs/LoyaltyMembership.md +1 -1
- data/docs/LoyaltyProgram.md +5 -3
- data/docs/LoyaltyProgramBalance.md +7 -3
- data/docs/LoyaltyProgramEntity.md +5 -1
- data/docs/LoyaltySubLedger.md +2 -0
- data/docs/LoyaltyTier.md +6 -2
- data/docs/ManagementApi.md +244 -250
- data/docs/ManagementKey.md +3 -1
- data/docs/MessageLogEntry.md +10 -2
- data/docs/ModelReturn.md +1 -1
- data/docs/NewAudience.md +1 -1
- data/docs/NewCampaignSet.md +1 -1
- 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/NewManagementKey.md +2 -0
- data/docs/NewPicklist.md +1 -1
- data/docs/NewWebhook.md +1 -1
- data/docs/PendingPointsNotificationPolicy.md +3 -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 +19 -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 +3 -3
- data/docs/StrikethroughDebugResponse.md +19 -0
- data/docs/StrikethroughEffect.md +5 -1
- data/docs/StrikethroughLabelingNotification.md +4 -2
- data/docs/SummaryCampaignStoreBudget.md +23 -0
- data/docs/TemplateArgDef.md +2 -0
- data/docs/TemplateDef.md +1 -1
- data/docs/TierDowngradeNotificationPolicy.md +3 -1
- data/docs/TierUpgradeNotificationPolicy.md +3 -1
- data/docs/TierWillDowngradeNotificationPolicy.md +2 -0
- data/docs/UpdateAchievement.md +11 -3
- 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 +233 -42
- data/lib/talon_one/api/management_api.rb +323 -333
- 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 +113 -16
- data/lib/talon_one/models/achievement_additional_properties.rb +49 -10
- data/lib/talon_one/models/achievement_progress.rb +4 -137
- data/lib/talon_one/models/add_free_item_effect_props.rb +14 -4
- data/lib/talon_one/models/add_loyalty_points_effect_props.rb +11 -0
- data/lib/talon_one/models/additional_campaign_properties.rb +19 -12
- data/lib/talon_one/models/analytics_product.rb +251 -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 +2 -3
- 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 +1 -2
- data/lib/talon_one/models/application_cif_expression.rb +1 -2
- data/lib/talon_one/models/application_customer.rb +4 -5
- data/lib/talon_one/models/application_entity.rb +1 -1
- data/lib/talon_one/models/application_event.rb +1 -2
- data/lib/talon_one/models/application_referee.rb +1 -2
- data/lib/talon_one/models/application_session.rb +3 -4
- 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 +1 -2
- 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 +39 -11
- 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 +1 -2
- data/lib/talon_one/models/campaign_group.rb +0 -1
- data/lib/talon_one/models/campaign_notification_policy.rb +14 -4
- data/lib/talon_one/models/campaign_set.rb +1 -2
- data/lib/talon_one/models/campaign_store_budget.rb +1 -2
- 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_expiring_points_notification_policy.rb +14 -4
- 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/catalogs_strikethrough_notification_policy.rb +38 -4
- 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 +1 -2
- data/lib/talon_one/models/coupon_deletion_filters.rb +0 -2
- data/lib/talon_one/models/coupon_deletion_job.rb +1 -2
- data/lib/talon_one/models/coupons_notification_policy.rb +24 -4
- data/lib/talon_one/models/create_achievement.rb +90 -9
- data/lib/talon_one/models/create_application_api_key.rb +2 -2
- data/lib/talon_one/models/custom_effect.rb +0 -1
- data/lib/talon_one/models/customer_inventory.rb +1 -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 +1 -2
- data/lib/talon_one/models/customer_session_v2.rb +7 -7
- 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 +1 -2
- data/lib/talon_one/models/event.rb +1 -2
- 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/expiring_coupons_notification_policy.rb +14 -4
- data/lib/talon_one/models/expiring_points_notification_policy.rb +14 -4
- 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_response2001.rb +11 -11
- data/lib/talon_one/models/inline_response20010.rb +11 -11
- data/lib/talon_one/models/inline_response20011.rb +11 -11
- data/lib/talon_one/models/inline_response20012.rb +1 -1
- data/lib/talon_one/models/inline_response20013.rb +1 -1
- data/lib/talon_one/models/inline_response20014.rb +1 -1
- data/lib/talon_one/models/inline_response20015.rb +11 -11
- data/lib/talon_one/models/inline_response20016.rb +11 -13
- data/lib/talon_one/models/inline_response20017.rb +7 -11
- data/lib/talon_one/models/inline_response20018.rb +1 -1
- data/lib/talon_one/models/inline_response20019.rb +3 -1
- data/lib/talon_one/models/inline_response2002.rb +11 -11
- data/lib/talon_one/models/inline_response20020.rb +11 -7
- data/lib/talon_one/models/inline_response20021.rb +11 -11
- data/lib/talon_one/models/inline_response20022.rb +7 -11
- data/lib/talon_one/models/inline_response20023.rb +7 -11
- data/lib/talon_one/models/inline_response20024.rb +11 -11
- data/lib/talon_one/models/inline_response20025.rb +11 -7
- data/lib/talon_one/models/inline_response20026.rb +11 -7
- data/lib/talon_one/models/inline_response20027.rb +6 -1
- data/lib/talon_one/models/inline_response20028.rb +1 -1
- data/lib/talon_one/models/inline_response20029.rb +8 -13
- data/lib/talon_one/models/inline_response2003.rb +1 -1
- data/lib/talon_one/models/inline_response20030.rb +7 -11
- data/lib/talon_one/models/inline_response20031.rb +13 -8
- data/lib/talon_one/models/inline_response20032.rb +11 -2
- data/lib/talon_one/models/inline_response20033.rb +2 -11
- data/lib/talon_one/models/inline_response20034.rb +8 -13
- data/lib/talon_one/models/inline_response20035.rb +1 -1
- data/lib/talon_one/models/inline_response20036.rb +1 -1
- data/lib/talon_one/models/inline_response20037.rb +11 -7
- 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_response2004.rb +1 -1
- data/lib/talon_one/models/inline_response20040.rb +1 -1
- data/lib/talon_one/models/inline_response20041.rb +1 -1
- 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 +7 -11
- data/lib/talon_one/models/inline_response20046.rb +13 -8
- data/lib/talon_one/models/inline_response20047.rb +11 -7
- data/lib/talon_one/models/inline_response2005.rb +11 -11
- data/lib/talon_one/models/inline_response2006.rb +11 -11
- data/lib/talon_one/models/inline_response2007.rb +1 -1
- data/lib/talon_one/models/inline_response2008.rb +1 -1
- data/lib/talon_one/models/inline_response2009.rb +11 -11
- 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 +34 -4
- data/lib/talon_one/models/library_attribute.rb +0 -1
- data/lib/talon_one/models/limit_counter.rb +1 -2
- 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.rb +14 -4
- data/lib/talon_one/models/loyalty_balance_with_tier.rb +12 -2
- 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_ledger_entry.rb +13 -4
- data/lib/talon_one/models/loyalty_program.rb +25 -3
- data/lib/talon_one/models/loyalty_program_balance.rb +36 -6
- 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_sub_ledger.rb +16 -1
- data/lib/talon_one/models/loyalty_tier.rb +24 -4
- data/lib/talon_one/models/management_key.rb +14 -5
- data/lib/talon_one/models/message_log_entry.rb +67 -7
- data/lib/talon_one/models/model_return.rb +1 -2
- 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 +2 -3
- data/lib/talon_one/models/new_attribute.rb +0 -1
- data/lib/talon_one/models/new_audience.rb +1 -2
- 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 +1 -2
- 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 +11 -2
- 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/pending_points_notification_policy.rb +14 -4
- data/lib/talon_one/models/picklist.rb +0 -1
- data/lib/talon_one/models/product.rb +1 -20
- data/lib/talon_one/models/product_search_match.rb +232 -0
- data/lib/talon_one/models/product_sku_unit_analytics.rb +256 -0
- data/lib/talon_one/models/product_unit_analytics.rb +227 -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 +2 -3
- data/lib/talon_one/models/strikethrough_debug_response.rb +221 -0
- data/lib/talon_one/models/strikethrough_effect.rb +24 -4
- data/lib/talon_one/models/strikethrough_labeling_notification.rb +46 -2
- data/lib/talon_one/models/summary_campaign_store_budget.rb +294 -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 +1 -2
- data/lib/talon_one/models/template_limit_config.rb +0 -1
- data/lib/talon_one/models/tier_downgrade_notification_policy.rb +14 -4
- data/lib/talon_one/models/tier_upgrade_notification_policy.rb +14 -4
- data/lib/talon_one/models/tier_will_downgrade_notification_policy.rb +11 -1
- data/lib/talon_one/models/transfer_loyalty_card.rb +11 -0
- data/lib/talon_one/models/update_achievement.rb +92 -6
- 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 +30 -5
- data/spec/api/integration_api_spec.rb +50 -14
- data/spec/api/management_api_spec.rb +106 -109
- data/spec/models/achievement_additional_properties_spec.rb +10 -0
- data/spec/models/achievement_base_spec.rb +103 -0
- data/spec/models/achievement_progress_spec.rb +1 -37
- data/spec/models/achievement_progress_with_definition_spec.rb +137 -0
- data/spec/models/achievement_spec.rb +42 -0
- data/spec/models/achievement_status_entry_spec.rb +137 -0
- data/spec/models/add_free_item_effect_props_spec.rb +6 -0
- data/spec/models/additional_campaign_properties_spec.rb +7 -1
- data/spec/models/analytics_product_sku_spec.rb +53 -0
- data/spec/models/analytics_product_spec.rb +59 -0
- data/spec/models/analytics_sku_spec.rb +59 -0
- data/spec/models/application_api_key_spec.rb +1 -1
- data/spec/models/application_campaign_analytics_spec.rb +1 -1
- data/spec/models/application_campaign_stats_spec.rb +6 -0
- data/spec/models/application_cif_references_spec.rb +47 -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_detail_spec.rb +47 -0
- data/spec/models/campaign_notification_policy_spec.rb +6 -0
- data/spec/models/campaign_spec.rb +17 -1
- data/spec/models/campaign_store_budget_limit_config_spec.rb +73 -0
- 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/card_expiring_points_notification_policy_spec.rb +6 -0
- data/spec/models/catalogs_strikethrough_notification_policy_spec.rb +6 -0
- data/spec/models/coupons_notification_policy_spec.rb +12 -0
- data/spec/models/create_achievement_spec.rb +32 -0
- data/spec/models/create_application_api_key_spec.rb +1 -1
- data/spec/models/expiring_coupons_notification_policy_spec.rb +6 -0
- data/spec/models/expiring_points_notification_policy_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/hidden_conditions_effects_spec.rb +59 -0
- data/spec/models/inline_response20010_spec.rb +1 -1
- data/spec/models/inline_response20011_spec.rb +1 -1
- data/spec/models/inline_response20015_spec.rb +1 -1
- data/spec/models/inline_response20016_spec.rb +1 -1
- data/spec/models/inline_response20017_spec.rb +0 -6
- data/spec/models/inline_response2001_spec.rb +1 -1
- data/spec/models/inline_response20020_spec.rb +6 -0
- data/spec/models/inline_response20021_spec.rb +1 -1
- data/spec/models/inline_response20022_spec.rb +0 -6
- data/spec/models/inline_response20023_spec.rb +0 -6
- data/spec/models/inline_response20024_spec.rb +2 -2
- data/spec/models/inline_response20025_spec.rb +6 -0
- data/spec/models/inline_response20026_spec.rb +6 -0
- data/spec/models/inline_response20029_spec.rb +1 -1
- data/spec/models/inline_response2002_spec.rb +1 -1
- data/spec/models/inline_response20030_spec.rb +0 -6
- data/spec/models/inline_response20031_spec.rb +1 -1
- 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 +1 -1
- data/spec/models/inline_response20037_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/inline_response20046_spec.rb +1 -1
- data/spec/models/inline_response20047_spec.rb +6 -0
- data/spec/models/inline_response20048_spec.rb +47 -0
- data/spec/models/inline_response20049_spec.rb +47 -0
- data/spec/models/inline_response2005_spec.rb +1 -1
- data/spec/models/inline_response2006_spec.rb +1 -1
- data/spec/models/inline_response2009_spec.rb +1 -1
- data/spec/models/ledger_info_spec.rb +12 -0
- 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_balance_spec.rb +6 -0
- data/spec/models/loyalty_balance_with_tier_spec.rb +6 -0
- data/spec/models/loyalty_card_batch_spec.rb +6 -0
- data/spec/models/loyalty_card_spec.rb +12 -0
- data/spec/models/loyalty_ledger_entry_flags_spec.rb +41 -0
- data/spec/models/loyalty_ledger_entry_spec.rb +6 -0
- data/spec/models/loyalty_program_balance_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_sub_ledger_spec.rb +6 -0
- data/spec/models/loyalty_tier_spec.rb +12 -0
- data/spec/models/management_key_spec.rb +6 -0
- data/spec/models/message_log_entry_spec.rb +25 -1
- data/spec/models/message_test_spec.rb +47 -0
- data/spec/models/new_application_api_key_spec.rb +1 -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/new_management_key_spec.rb +6 -0
- data/spec/models/new_message_test_spec.rb +79 -0
- data/spec/models/pending_points_notification_policy_spec.rb +6 -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_data_point_spec.rb +65 -0
- data/spec/models/product_unit_analytics_spec.rb +47 -0
- data/spec/models/product_unit_analytics_totals_spec.rb +41 -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/sku_unit_analytics_data_point_spec.rb +59 -0
- data/spec/models/sku_unit_analytics_spec.rb +47 -0
- data/spec/models/strikethrough_debug_response_spec.rb +47 -0
- data/spec/models/strikethrough_effect_spec.rb +12 -0
- data/spec/models/strikethrough_labeling_notification_spec.rb +10 -0
- data/spec/models/summary_campaign_store_budget_spec.rb +67 -0
- data/spec/models/template_arg_def_spec.rb +6 -0
- data/spec/models/template_limit_config_spec.rb +1 -1
- data/spec/models/tier_downgrade_notification_policy_spec.rb +6 -0
- data/spec/models/tier_upgrade_notification_policy_spec.rb +6 -0
- data/spec/models/tier_will_downgrade_notification_policy_spec.rb +6 -0
- 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 +481 -6
data/docs/ManagementApi.md
CHANGED
@@ -63,7 +63,6 @@ Method | HTTP request | Description
|
|
63
63
|
[**get_achievement**](ManagementApi.md#get_achievement) | **GET** /v1/applications/{applicationId}/campaigns/{campaignId}/achievements/{achievementId} | Get achievement
|
64
64
|
[**get_additional_cost**](ManagementApi.md#get_additional_cost) | **GET** /v1/additional_costs/{additionalCostId} | Get additional cost
|
65
65
|
[**get_additional_costs**](ManagementApi.md#get_additional_costs) | **GET** /v1/additional_costs | List additional costs
|
66
|
-
[**get_all_access_logs**](ManagementApi.md#get_all_access_logs) | **GET** /v1/access_logs | List access logs
|
67
66
|
[**get_application**](ManagementApi.md#get_application) | **GET** /v1/applications/{applicationId} | Get Application
|
68
67
|
[**get_application_api_health**](ManagementApi.md#get_application_api_health) | **GET** /v1/applications/{applicationId}/health_report | Get Application health
|
69
68
|
[**get_application_customer**](ManagementApi.md#get_application_customer) | **GET** /v1/applications/{applicationId}/customers/{customerId} | Get application's customer
|
@@ -98,6 +97,7 @@ Method | HTTP request | Description
|
|
98
97
|
[**get_customer_profile_achievement_progress**](ManagementApi.md#get_customer_profile_achievement_progress) | **GET** /v1/applications/{applicationId}/achievement_progress/{integrationId} | List customer achievements
|
99
98
|
[**get_customer_profiles**](ManagementApi.md#get_customer_profiles) | **GET** /v1/customers/no_total | List customer profiles
|
100
99
|
[**get_customers_by_attributes**](ManagementApi.md#get_customers_by_attributes) | **POST** /v1/customer_search/no_total | List customer profiles matching the given attributes
|
100
|
+
[**get_dashboard_statistics**](ManagementApi.md#get_dashboard_statistics) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/dashboard | Get statistics for loyalty dashboard
|
101
101
|
[**get_event_types**](ManagementApi.md#get_event_types) | **GET** /v1/event_types | List event types
|
102
102
|
[**get_exports**](ManagementApi.md#get_exports) | **GET** /v1/exports | Get exports
|
103
103
|
[**get_loyalty_card**](ManagementApi.md#get_loyalty_card) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId} | Get loyalty card
|
@@ -200,7 +200,7 @@ TalonOne.configure do |config|
|
|
200
200
|
end
|
201
201
|
|
202
202
|
api_instance = TalonOne::ManagementApi.new
|
203
|
-
body = TalonOne::
|
203
|
+
body = TalonOne::DeactivateUserRequest.new # DeactivateUserRequest | body
|
204
204
|
|
205
205
|
begin
|
206
206
|
#Enable user by email address
|
@@ -215,7 +215,7 @@ end
|
|
215
215
|
|
216
216
|
Name | Type | Description | Notes
|
217
217
|
------------- | ------------- | ------------- | -------------
|
218
|
-
**body** |
|
218
|
+
**body** | **DeactivateUserRequest**| body |
|
219
219
|
|
220
220
|
### Return type
|
221
221
|
|
@@ -321,7 +321,7 @@ end
|
|
321
321
|
|
322
322
|
api_instance = TalonOne::ManagementApi.new
|
323
323
|
loyalty_program_id = 'loyalty_program_id_example' # String | The identifier for the loyalty program.
|
324
|
-
integration_id = 'integration_id_example' # String | The identifier
|
324
|
+
integration_id = 'integration_id_example' # String | The integration identifier for this customer profile. Must be: - Unique within the deployment. - Stable for the customer. Do not use an ID that the customer can update themselves. For example, you can use a database ID. Once set, you cannot update this identifier.
|
325
325
|
body = TalonOne::AddLoyaltyPoints.new # AddLoyaltyPoints | body
|
326
326
|
|
327
327
|
begin
|
@@ -338,7 +338,7 @@ end
|
|
338
338
|
Name | Type | Description | Notes
|
339
339
|
------------- | ------------- | ------------- | -------------
|
340
340
|
**loyalty_program_id** | **String**| The identifier for the loyalty program. |
|
341
|
-
**integration_id** | **String**| The identifier
|
341
|
+
**integration_id** | **String**| The integration identifier for this customer profile. Must be: - Unique within the deployment. - Stable for the customer. Do not use an ID that the customer can update themselves. For example, you can use a database ID. Once set, you cannot update this identifier. |
|
342
342
|
**body** | [**AddLoyaltyPoints**](AddLoyaltyPoints.md)| body |
|
343
343
|
|
344
344
|
### Return type
|
@@ -357,7 +357,7 @@ nil (empty response body)
|
|
357
357
|
|
358
358
|
## copy_campaign_to_applications
|
359
359
|
|
360
|
-
>
|
360
|
+
> InlineResponse2008 copy_campaign_to_applications(application_id, campaign_id, body)
|
361
361
|
|
362
362
|
Copy the campaign into the specified Application
|
363
363
|
|
@@ -406,7 +406,7 @@ Name | Type | Description | Notes
|
|
406
406
|
|
407
407
|
### Return type
|
408
408
|
|
409
|
-
[**
|
409
|
+
[**InlineResponse2008**](InlineResponse2008.md)
|
410
410
|
|
411
411
|
### Authorization
|
412
412
|
|
@@ -845,7 +845,7 @@ Name | Type | Description | Notes
|
|
845
845
|
|
846
846
|
## create_coupons
|
847
847
|
|
848
|
-
>
|
848
|
+
> InlineResponse20010 create_coupons(application_id, campaign_id, body, opts)
|
849
849
|
|
850
850
|
Create coupons
|
851
851
|
|
@@ -874,7 +874,7 @@ application_id = 56 # Integer | The ID of the Application. It is displayed in yo
|
|
874
874
|
campaign_id = 56 # Integer | The ID of the campaign. It is displayed in your Talon.One deployment URL.
|
875
875
|
body = TalonOne::NewCoupons.new # NewCoupons | body
|
876
876
|
opts = {
|
877
|
-
silent: 'yes' # String | Possible values: `yes` or `no`. - `yes`: Increases the
|
877
|
+
silent: 'yes' # String | Possible values: `yes` or `no`. - `yes`: Increases the performance of the API call by returning a 204 response. - `no`: Returns a 200 response that contains the updated customer profiles.
|
878
878
|
}
|
879
879
|
|
880
880
|
begin
|
@@ -894,11 +894,11 @@ Name | Type | Description | Notes
|
|
894
894
|
**application_id** | **Integer**| The ID of the Application. It is displayed in your Talon.One deployment URL. |
|
895
895
|
**campaign_id** | **Integer**| The ID of the campaign. It is displayed in your Talon.One deployment URL. |
|
896
896
|
**body** | [**NewCoupons**](NewCoupons.md)| body |
|
897
|
-
**silent** | **String**| Possible values: `yes` or `no`. - `yes`: Increases the
|
897
|
+
**silent** | **String**| Possible values: `yes` or `no`. - `yes`: Increases the performance of the API call by returning a 204 response. - `no`: Returns a 200 response that contains the updated customer profiles. | [optional] [default to 'yes']
|
898
898
|
|
899
899
|
### Return type
|
900
900
|
|
901
|
-
[**
|
901
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
902
902
|
|
903
903
|
### Authorization
|
904
904
|
|
@@ -1038,7 +1038,7 @@ Name | Type | Description | Notes
|
|
1038
1038
|
|
1039
1039
|
## create_coupons_for_multiple_recipients
|
1040
1040
|
|
1041
|
-
>
|
1041
|
+
> InlineResponse20010 create_coupons_for_multiple_recipients(application_id, campaign_id, body, opts)
|
1042
1042
|
|
1043
1043
|
Create coupons for multiple recipients
|
1044
1044
|
|
@@ -1067,7 +1067,7 @@ application_id = 56 # Integer | The ID of the Application. It is displayed in yo
|
|
1067
1067
|
campaign_id = 56 # Integer | The ID of the campaign. It is displayed in your Talon.One deployment URL.
|
1068
1068
|
body = TalonOne::NewCouponsForMultipleRecipients.new # NewCouponsForMultipleRecipients | body
|
1069
1069
|
opts = {
|
1070
|
-
silent: 'yes' # String | Possible values: `yes` or `no`. - `yes`: Increases the
|
1070
|
+
silent: 'yes' # String | Possible values: `yes` or `no`. - `yes`: Increases the performance of the API call by returning a 204 response. - `no`: Returns a 200 response that contains the updated customer profiles.
|
1071
1071
|
}
|
1072
1072
|
|
1073
1073
|
begin
|
@@ -1087,11 +1087,11 @@ Name | Type | Description | Notes
|
|
1087
1087
|
**application_id** | **Integer**| The ID of the Application. It is displayed in your Talon.One deployment URL. |
|
1088
1088
|
**campaign_id** | **Integer**| The ID of the campaign. It is displayed in your Talon.One deployment URL. |
|
1089
1089
|
**body** | [**NewCouponsForMultipleRecipients**](NewCouponsForMultipleRecipients.md)| body |
|
1090
|
-
**silent** | **String**| Possible values: `yes` or `no`. - `yes`: Increases the
|
1090
|
+
**silent** | **String**| Possible values: `yes` or `no`. - `yes`: Increases the performance of the API call by returning a 204 response. - `no`: Returns a 200 response that contains the updated customer profiles. | [optional] [default to 'yes']
|
1091
1091
|
|
1092
1092
|
### Return type
|
1093
1093
|
|
1094
|
-
[**
|
1094
|
+
[**InlineResponse20010**](InlineResponse20010.md)
|
1095
1095
|
|
1096
1096
|
### Authorization
|
1097
1097
|
|
@@ -1865,7 +1865,7 @@ opts = {
|
|
1865
1865
|
batch_id: 'batch_id_example', # String | Filter results by batches of coupons
|
1866
1866
|
usable: 'usable_example', # String | - `true`: only coupons where `usageCounter < usageLimit` will be returned. - `false`: only coupons where `usageCounter >= usageLimit` will be returned.
|
1867
1867
|
referral_id: 56, # Integer | Filter the results by matching them with the ID of a referral. This filter shows the coupons created by redeeming a referral code.
|
1868
|
-
recipient_integration_id: 'recipient_integration_id_example', # String | Filter results by match with a profile
|
1868
|
+
recipient_integration_id: 'recipient_integration_id_example', # String | Filter results by match with a profile ID specified in the coupon's `RecipientIntegrationId` field.
|
1869
1869
|
exact_match: false # Boolean | Filter results to an exact case-insensitive matching against the coupon code
|
1870
1870
|
}
|
1871
1871
|
|
@@ -1895,7 +1895,7 @@ Name | Type | Description | Notes
|
|
1895
1895
|
**batch_id** | **String**| Filter results by batches of coupons | [optional]
|
1896
1896
|
**usable** | **String**| - `true`: only coupons where `usageCounter < usageLimit` will be returned. - `false`: only coupons where `usageCounter >= usageLimit` will be returned. | [optional]
|
1897
1897
|
**referral_id** | **Integer**| Filter the results by matching them with the ID of a referral. This filter shows the coupons created by redeeming a referral code. | [optional]
|
1898
|
-
**recipient_integration_id** | **String**| Filter results by match with a profile
|
1898
|
+
**recipient_integration_id** | **String**| Filter results by match with a profile ID specified in the coupon's `RecipientIntegrationId` field. | [optional]
|
1899
1899
|
**exact_match** | **Boolean**| Filter results to an exact case-insensitive matching against the coupon code | [optional] [default to false]
|
1900
1900
|
|
1901
1901
|
### Return type
|
@@ -2179,7 +2179,7 @@ TalonOne.configure do |config|
|
|
2179
2179
|
end
|
2180
2180
|
|
2181
2181
|
api_instance = TalonOne::ManagementApi.new
|
2182
|
-
body = TalonOne::
|
2182
|
+
body = TalonOne::DeactivateUserRequest.new # DeactivateUserRequest | body
|
2183
2183
|
|
2184
2184
|
begin
|
2185
2185
|
#Delete user by email address
|
@@ -2194,7 +2194,7 @@ end
|
|
2194
2194
|
|
2195
2195
|
Name | Type | Description | Notes
|
2196
2196
|
------------- | ------------- | ------------- | -------------
|
2197
|
-
**body** |
|
2197
|
+
**body** | **DeactivateUserRequest**| body |
|
2198
2198
|
|
2199
2199
|
### Return type
|
2200
2200
|
|
@@ -2635,7 +2635,7 @@ Name | Type | Description | Notes
|
|
2635
2635
|
|
2636
2636
|
Export coupons
|
2637
2637
|
|
2638
|
-
Download a CSV file containing the coupons that match the given properties. **Tip:** If the exported CSV file is too large to view, you can [split it into multiple files](https://www.makeuseof.com/tag/how-to-split-a-huge-csv-excel-workbook-into-seperate-files/). The CSV file can contain the following columns: - `accountid`: The ID of your deployment. - `applicationid`: The ID of the Application this coupon is related to. - `attributes`: A json object describing _custom_ referral attribute names and their values. - `batchid`: The ID of the batch this coupon is part of. - `campaignid`: The ID of the campaign this coupon is related to. - `counter`: The number of times this coupon has been redeemed. - `created`: The creation date of the coupon code. - `deleted`: Whether the coupon code is deleted. - `deleted_changelogid`: The ID of the delete event in the logs. - `discount_counter`: The amount of discount given by this coupon. - `discount_limitval`: The maximum discount amount that can be given be this coupon. - `expirydate`: The end date in RFC3339 of the code redemption period. - `id`: The internal ID of the coupon code. - `importid`: The ID of the import job that created this coupon. - `is_reservation_mandatory`: Whether this coupon requires a reservation to be redeemed. - `limits`: The limits set on this coupon. - `limitval`: The maximum number of redemptions of this code. - `recipientintegrationid`: The integration ID of the recipient of the coupon. Only the customer with this integration ID can redeem this code. Available only for personal codes. - `referralid`: The ID of the referral code that triggered the creation of this coupon (create coupon effect). - `reservation`: Whether the coupon can be reserved for multiple customers. - `reservation_counter`: How many times this coupon has been reserved. - `reservation_limitval`: The maximum of number of reservations this coupon can have. - `startdate`: The start date in RFC3339 of the code redemption period. - `value`: The coupon code.
|
2638
|
+
Download a CSV file containing the coupons that match the given properties. **Tip:** If the exported CSV file is too large to view, you can [split it into multiple files](https://www.makeuseof.com/tag/how-to-split-a-huge-csv-excel-workbook-into-seperate-files/). The CSV file can contain the following columns: - `accountid`: The ID of your deployment. - `applicationid`: The ID of the Application this coupon is related to. - `attributes`: A json object describing _custom_ referral attribute names and their values. - `batchid`: The ID of the batch this coupon is part of. - `campaignid`: The ID of the campaign this coupon is related to. - `counter`: The number of times this coupon has been redeemed. - `created`: The creation date in RFC3339 of the coupon code. - `deleted`: Whether the coupon code is deleted. - `deleted_changelogid`: The ID of the delete event in the logs. - `discount_counter`: The amount of discount given by this coupon. - `discount_limitval`: The maximum discount amount that can be given be this coupon. - `expirydate`: The end date in RFC3339 of the code redemption period. - `id`: The internal ID of the coupon code. - `importid`: The ID of the import job that created this coupon. - `is_reservation_mandatory`: Whether this coupon requires a reservation to be redeemed. - `limits`: The limits set on this coupon. - `limitval`: The maximum number of redemptions of this code. - `recipientintegrationid`: The integration ID of the recipient of the coupon. Only the customer with this integration ID can redeem this code. Available only for personal codes. - `referralid`: The ID of the referral code that triggered the creation of this coupon (create coupon effect). - `reservation`: Whether the coupon can be reserved for multiple customers. - `reservation_counter`: How many times this coupon has been reserved. - `reservation_limitval`: The maximum of number of reservations this coupon can have. - `startdate`: The start date in RFC3339 of the code redemption period. - `value`: The coupon code.
|
2639
2639
|
|
2640
2640
|
### Example
|
2641
2641
|
|
@@ -2658,7 +2658,7 @@ end
|
|
2658
2658
|
api_instance = TalonOne::ManagementApi.new
|
2659
2659
|
application_id = 56 # Integer | The ID of the Application. It is displayed in your Talon.One deployment URL.
|
2660
2660
|
opts = {
|
2661
|
-
campaign_id: 3.4, # Float | Filter results by campaign.
|
2661
|
+
campaign_id: 3.4, # Float | Filter results by campaign ID.
|
2662
2662
|
sort: 'sort_example', # String | The field by which results should be sorted. By default, results are sorted in ascending order. To sort them in descending order, prefix the field name with `-`. **Note:** This parameter works only with numeric fields.
|
2663
2663
|
value: 'value_example', # String | Filter results performing case-insensitive matching against the coupon code. Both the code and the query are folded to remove all non-alpha-numeric characters.
|
2664
2664
|
created_before: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the coupon creation timestamp. You can use any time zone setting. Talon.One will convert to UTC internally.
|
@@ -2689,7 +2689,7 @@ end
|
|
2689
2689
|
Name | Type | Description | Notes
|
2690
2690
|
------------- | ------------- | ------------- | -------------
|
2691
2691
|
**application_id** | **Integer**| The ID of the Application. It is displayed in your Talon.One deployment URL. |
|
2692
|
-
**campaign_id** | **Float**| Filter results by campaign. | [optional]
|
2692
|
+
**campaign_id** | **Float**| Filter results by campaign ID. | [optional]
|
2693
2693
|
**sort** | **String**| The field by which results should be sorted. By default, results are sorted in ascending order. To sort them in descending order, prefix the field name with `-`. **Note:** This parameter works only with numeric fields. | [optional]
|
2694
2694
|
**value** | **String**| Filter results performing case-insensitive matching against the coupon code. Both the code and the query are folded to remove all non-alpha-numeric characters. | [optional]
|
2695
2695
|
**created_before** | **DateTime**| Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the coupon creation timestamp. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
@@ -2883,7 +2883,7 @@ end
|
|
2883
2883
|
api_instance = TalonOne::ManagementApi.new
|
2884
2884
|
application_id = 56 # Integer | The ID of the Application. It is displayed in your Talon.One deployment URL.
|
2885
2885
|
opts = {
|
2886
|
-
campaign_id: 3.4, # Float | Filter results by campaign.
|
2886
|
+
campaign_id: 3.4, # Float | Filter results by campaign ID.
|
2887
2887
|
created_before: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results comparing the parameter value, expected to be an RFC3339 timestamp string. You can use any time zone setting. Talon.One will convert to UTC internally.
|
2888
2888
|
created_after: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results comparing the parameter value, expected to be an RFC3339 timestamp string. You can use any time zone setting. Talon.One will convert to UTC internally.
|
2889
2889
|
date_format: 'date_format_example' # String | Determines the format of dates in the export document.
|
@@ -2904,7 +2904,7 @@ end
|
|
2904
2904
|
Name | Type | Description | Notes
|
2905
2905
|
------------- | ------------- | ------------- | -------------
|
2906
2906
|
**application_id** | **Integer**| The ID of the Application. It is displayed in your Talon.One deployment URL. |
|
2907
|
-
**campaign_id** | **Float**| Filter results by campaign. | [optional]
|
2907
|
+
**campaign_id** | **Float**| Filter results by campaign ID. | [optional]
|
2908
2908
|
**created_before** | **DateTime**| Filter results comparing the parameter value, expected to be an RFC3339 timestamp string. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
2909
2909
|
**created_after** | **DateTime**| Filter results comparing the parameter value, expected to be an RFC3339 timestamp string. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
2910
2910
|
**date_format** | **String**| Determines the format of dates in the export document. | [optional]
|
@@ -3210,7 +3210,8 @@ end
|
|
3210
3210
|
api_instance = TalonOne::ManagementApi.new
|
3211
3211
|
loyalty_program_id = 56 # Integer | Identifier of the card-based loyalty program containing the loyalty card. You can get the ID with the [List loyalty programs](https://docs.talon.one/management-api#tag/Loyalty/operation/getLoyaltyPrograms) endpoint.
|
3212
3212
|
opts = {
|
3213
|
-
batch_id: 'batch_id_example' # String | Filter results by loyalty card batch ID.
|
3213
|
+
batch_id: 'batch_id_example', # String | Filter results by loyalty card batch ID.
|
3214
|
+
date_format: 'date_format_example' # String | Determines the format of dates in the export document.
|
3214
3215
|
}
|
3215
3216
|
|
3216
3217
|
begin
|
@@ -3229,6 +3230,7 @@ Name | Type | Description | Notes
|
|
3229
3230
|
------------- | ------------- | ------------- | -------------
|
3230
3231
|
**loyalty_program_id** | **Integer**| Identifier of the card-based loyalty program containing the loyalty card. You can get the ID with the [List loyalty programs](https://docs.talon.one/management-api#tag/Loyalty/operation/getLoyaltyPrograms) endpoint. |
|
3231
3232
|
**batch_id** | **String**| Filter results by loyalty card batch ID. | [optional]
|
3233
|
+
**date_format** | **String**| Determines the format of dates in the export document. | [optional]
|
3232
3234
|
|
3233
3235
|
### Return type
|
3234
3236
|
|
@@ -3274,7 +3276,7 @@ api_instance = TalonOne::ManagementApi.new
|
|
3274
3276
|
range_start = DateTime.parse('2013-10-20T19:20:30+01:00') # DateTime | Only return results from after this timestamp. **Note:** - This must be an RFC3339 timestamp string. - You can include a time component in your string, for example, `T23:59:59` to specify the end of the day. The time zone setting considered is `UTC`. If you do not include a time component, a default time value of `T00:00:00` (midnight) in `UTC` is considered.
|
3275
3277
|
range_end = DateTime.parse('2013-10-20T19:20:30+01:00') # DateTime | Only return results from before this timestamp. **Note:** - This must be an RFC3339 timestamp string. - You can include a time component in your string, for example, `T23:59:59` to specify the end of the day. The time zone setting considered is `UTC`. If you do not include a time component, a default time value of `T00:00:00` (midnight) in `UTC` is considered.
|
3276
3278
|
loyalty_program_id = 'loyalty_program_id_example' # String | The identifier for the loyalty program.
|
3277
|
-
integration_id = 'integration_id_example' # String | The identifier
|
3279
|
+
integration_id = 'integration_id_example' # String | The integration identifier for this customer profile. Must be: - Unique within the deployment. - Stable for the customer. Do not use an ID that the customer can update themselves. For example, you can use a database ID. Once set, you cannot update this identifier.
|
3278
3280
|
opts = {
|
3279
3281
|
date_format: 'date_format_example' # String | Determines the format of dates in the export document.
|
3280
3282
|
}
|
@@ -3296,7 +3298,7 @@ Name | Type | Description | Notes
|
|
3296
3298
|
**range_start** | **DateTime**| Only return results from after this timestamp. **Note:** - This must be an RFC3339 timestamp string. - You can include a time component in your string, for example, `T23:59:59` to specify the end of the day. The time zone setting considered is `UTC`. If you do not include a time component, a default time value of `T00:00:00` (midnight) in `UTC` is considered. |
|
3297
3299
|
**range_end** | **DateTime**| Only return results from before this timestamp. **Note:** - This must be an RFC3339 timestamp string. - You can include a time component in your string, for example, `T23:59:59` to specify the end of the day. The time zone setting considered is `UTC`. If you do not include a time component, a default time value of `T00:00:00` (midnight) in `UTC` is considered. |
|
3298
3300
|
**loyalty_program_id** | **String**| The identifier for the loyalty program. |
|
3299
|
-
**integration_id** | **String**| The identifier
|
3301
|
+
**integration_id** | **String**| The integration identifier for this customer profile. Must be: - Unique within the deployment. - Stable for the customer. Do not use an ID that the customer can update themselves. For example, you can use a database ID. Once set, you cannot update this identifier. |
|
3300
3302
|
**date_format** | **String**| Determines the format of dates in the export document. | [optional]
|
3301
3303
|
|
3302
3304
|
### Return type
|
@@ -3407,7 +3409,7 @@ end
|
|
3407
3409
|
api_instance = TalonOne::ManagementApi.new
|
3408
3410
|
application_id = 56 # Integer | The ID of the Application. It is displayed in your Talon.One deployment URL.
|
3409
3411
|
opts = {
|
3410
|
-
campaign_id: 3.4, # Float | Filter results by campaign.
|
3412
|
+
campaign_id: 3.4, # Float | Filter results by campaign ID.
|
3411
3413
|
created_before: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the referral creation timestamp. You can use any time zone setting. Talon.One will convert to UTC internally.
|
3412
3414
|
created_after: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the referral creation timestamp. You can use any time zone setting. Talon.One will convert to UTC internally.
|
3413
3415
|
valid: 'valid_example', # String | - `expired`: Matches referrals in which the expiration date is set and in the past. - `validNow`: Matches referrals in which start date is null or in the past and expiration date is null or in the future. - `validFuture`: Matches referrals in which start date is set and in the future.
|
@@ -3431,7 +3433,7 @@ end
|
|
3431
3433
|
Name | Type | Description | Notes
|
3432
3434
|
------------- | ------------- | ------------- | -------------
|
3433
3435
|
**application_id** | **Integer**| The ID of the Application. It is displayed in your Talon.One deployment URL. |
|
3434
|
-
**campaign_id** | **Float**| Filter results by campaign. | [optional]
|
3436
|
+
**campaign_id** | **Float**| Filter results by campaign ID. | [optional]
|
3435
3437
|
**created_before** | **DateTime**| Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the referral creation timestamp. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
3436
3438
|
**created_after** | **DateTime**| Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the referral creation timestamp. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
3437
3439
|
**valid** | **String**| - `expired`: Matches referrals in which the expiration date is set and in the past. - `validNow`: Matches referrals in which start date is null or in the past and expiration date is null or in the future. - `validFuture`: Matches referrals in which start date is set and in the future. | [optional]
|
@@ -3455,7 +3457,7 @@ Name | Type | Description | Notes
|
|
3455
3457
|
|
3456
3458
|
## get_access_logs_without_total_count
|
3457
3459
|
|
3458
|
-
>
|
3460
|
+
> InlineResponse20022 get_access_logs_without_total_count(application_id, range_start, range_end, opts)
|
3459
3461
|
|
3460
3462
|
Get access logs for Application
|
3461
3463
|
|
@@ -3518,7 +3520,7 @@ Name | Type | Description | Notes
|
|
3518
3520
|
|
3519
3521
|
### Return type
|
3520
3522
|
|
3521
|
-
[**
|
3523
|
+
[**InlineResponse20022**](InlineResponse20022.md)
|
3522
3524
|
|
3523
3525
|
### Authorization
|
3524
3526
|
|
@@ -3831,7 +3833,7 @@ Name | Type | Description | Notes
|
|
3831
3833
|
|
3832
3834
|
## get_additional_costs
|
3833
3835
|
|
3834
|
-
>
|
3836
|
+
> InlineResponse20038 get_additional_costs(opts)
|
3835
3837
|
|
3836
3838
|
List additional costs
|
3837
3839
|
|
@@ -3882,82 +3884,7 @@ Name | Type | Description | Notes
|
|
3882
3884
|
|
3883
3885
|
### Return type
|
3884
3886
|
|
3885
|
-
[**
|
3886
|
-
|
3887
|
-
### Authorization
|
3888
|
-
|
3889
|
-
[management_key](../README.md#management_key), [manager_auth](../README.md#manager_auth)
|
3890
|
-
|
3891
|
-
### HTTP request headers
|
3892
|
-
|
3893
|
-
- **Content-Type**: Not defined
|
3894
|
-
- **Accept**: application/json
|
3895
|
-
|
3896
|
-
|
3897
|
-
## get_all_access_logs
|
3898
|
-
|
3899
|
-
> InlineResponse20020 get_all_access_logs(opts)
|
3900
|
-
|
3901
|
-
List access logs
|
3902
|
-
|
3903
|
-
Fetches the access logs for the entire account. Sensitive requests (logins) are _always_ filtered from the logs.
|
3904
|
-
|
3905
|
-
### Example
|
3906
|
-
|
3907
|
-
```ruby
|
3908
|
-
# load the gem
|
3909
|
-
require 'talon_one'
|
3910
|
-
# setup authorization
|
3911
|
-
TalonOne.configure do |config|
|
3912
|
-
# Configure API key authorization: management_key
|
3913
|
-
config.api_key['Authorization'] = 'YOUR API KEY'
|
3914
|
-
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3915
|
-
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3916
|
-
|
3917
|
-
# Configure API key authorization: manager_auth
|
3918
|
-
config.api_key['Authorization'] = 'YOUR API KEY'
|
3919
|
-
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
3920
|
-
#config.api_key_prefix['Authorization'] = 'Bearer'
|
3921
|
-
end
|
3922
|
-
|
3923
|
-
api_instance = TalonOne::ManagementApi.new
|
3924
|
-
opts = {
|
3925
|
-
range_start: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Only return results from after this timestamp. **Note:** - This must be an RFC3339 timestamp string. - You can include a time component in your string, for example, `T23:59:59` to specify the end of the day. The time zone setting considered is `UTC`. If you do not include a time component, a default time value of `T00:00:00` (midnight) in `UTC` is considered.
|
3926
|
-
range_end: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Only return results from before this timestamp. **Note:** - This must be an RFC3339 timestamp string. - You can include a time component in your string, for example, `T23:59:59` to specify the end of the day. The time zone setting considered is `UTC`. If you do not include a time component, a default time value of `T00:00:00` (midnight) in `UTC` is considered.
|
3927
|
-
path: 'path_example', # String | Only return results where the request path matches the given regular expression.
|
3928
|
-
method: 'method_example', # String | Only return results where the request method matches the given regular expression.
|
3929
|
-
status: 'status_example', # String | Filter results by HTTP status codes.
|
3930
|
-
page_size: 1000, # Integer | The number of items in the response.
|
3931
|
-
skip: 56, # Integer | The number of items to skip when paging through large result sets.
|
3932
|
-
sort: 'sort_example' # String | The field by which results should be sorted. By default, results are sorted in ascending order. To sort them in descending order, prefix the field name with `-`. **Note:** This parameter works only with numeric fields.
|
3933
|
-
}
|
3934
|
-
|
3935
|
-
begin
|
3936
|
-
#List access logs
|
3937
|
-
result = api_instance.get_all_access_logs(opts)
|
3938
|
-
p result
|
3939
|
-
rescue TalonOne::ApiError => e
|
3940
|
-
puts "Exception when calling ManagementApi->get_all_access_logs: #{e}"
|
3941
|
-
end
|
3942
|
-
```
|
3943
|
-
|
3944
|
-
### Parameters
|
3945
|
-
|
3946
|
-
|
3947
|
-
Name | Type | Description | Notes
|
3948
|
-
------------- | ------------- | ------------- | -------------
|
3949
|
-
**range_start** | **DateTime**| Only return results from after this timestamp. **Note:** - This must be an RFC3339 timestamp string. - You can include a time component in your string, for example, `T23:59:59` to specify the end of the day. The time zone setting considered is `UTC`. If you do not include a time component, a default time value of `T00:00:00` (midnight) in `UTC` is considered. | [optional]
|
3950
|
-
**range_end** | **DateTime**| Only return results from before this timestamp. **Note:** - This must be an RFC3339 timestamp string. - You can include a time component in your string, for example, `T23:59:59` to specify the end of the day. The time zone setting considered is `UTC`. If you do not include a time component, a default time value of `T00:00:00` (midnight) in `UTC` is considered. | [optional]
|
3951
|
-
**path** | **String**| Only return results where the request path matches the given regular expression. | [optional]
|
3952
|
-
**method** | **String**| Only return results where the request method matches the given regular expression. | [optional]
|
3953
|
-
**status** | **String**| Filter results by HTTP status codes. | [optional]
|
3954
|
-
**page_size** | **Integer**| The number of items in the response. | [optional] [default to 1000]
|
3955
|
-
**skip** | **Integer**| The number of items to skip when paging through large result sets. | [optional]
|
3956
|
-
**sort** | **String**| The field by which results should be sorted. By default, results are sorted in ascending order. To sort them in descending order, prefix the field name with `-`. **Note:** This parameter works only with numeric fields. | [optional]
|
3957
|
-
|
3958
|
-
### Return type
|
3959
|
-
|
3960
|
-
[**InlineResponse20020**](InlineResponse20020.md)
|
3887
|
+
[**InlineResponse20038**](InlineResponse20038.md)
|
3961
3888
|
|
3962
3889
|
### Authorization
|
3963
3890
|
|
@@ -4034,7 +3961,7 @@ Name | Type | Description | Notes
|
|
4034
3961
|
|
4035
3962
|
Get Application health
|
4036
3963
|
|
4037
|
-
Display the health of the Application and show the last time the Application was used. You can also
|
3964
|
+
Display the health of the Application and show the last time the Application was used. You can also find this information in the Campaign Manager. In your Application, click **Settings** > **Integration API Keys**. See the [docs](https://docs.talon.one/docs/dev/tutorials/monitoring-integration-status).
|
4038
3965
|
|
4039
3966
|
### Example
|
4040
3967
|
|
@@ -4150,7 +4077,7 @@ Name | Type | Description | Notes
|
|
4150
4077
|
|
4151
4078
|
## get_application_customer_friends
|
4152
4079
|
|
4153
|
-
>
|
4080
|
+
> InlineResponse20035 get_application_customer_friends(application_id, integration_id, opts)
|
4154
4081
|
|
4155
4082
|
List friends referred by customer profile
|
4156
4083
|
|
@@ -4207,7 +4134,7 @@ Name | Type | Description | Notes
|
|
4207
4134
|
|
4208
4135
|
### Return type
|
4209
4136
|
|
4210
|
-
[**
|
4137
|
+
[**InlineResponse20035**](InlineResponse20035.md)
|
4211
4138
|
|
4212
4139
|
### Authorization
|
4213
4140
|
|
@@ -4221,7 +4148,7 @@ Name | Type | Description | Notes
|
|
4221
4148
|
|
4222
4149
|
## get_application_customers
|
4223
4150
|
|
4224
|
-
>
|
4151
|
+
> InlineResponse20024 get_application_customers(application_id, opts)
|
4225
4152
|
|
4226
4153
|
List application's customers
|
4227
4154
|
|
@@ -4276,7 +4203,7 @@ Name | Type | Description | Notes
|
|
4276
4203
|
|
4277
4204
|
### Return type
|
4278
4205
|
|
4279
|
-
[**
|
4206
|
+
[**InlineResponse20024**](InlineResponse20024.md)
|
4280
4207
|
|
4281
4208
|
### Authorization
|
4282
4209
|
|
@@ -4290,7 +4217,7 @@ Name | Type | Description | Notes
|
|
4290
4217
|
|
4291
4218
|
## get_application_customers_by_attributes
|
4292
4219
|
|
4293
|
-
>
|
4220
|
+
> InlineResponse20025 get_application_customers_by_attributes(application_id, body, opts)
|
4294
4221
|
|
4295
4222
|
List application customers matching the given attributes
|
4296
4223
|
|
@@ -4345,7 +4272,7 @@ Name | Type | Description | Notes
|
|
4345
4272
|
|
4346
4273
|
### Return type
|
4347
4274
|
|
4348
|
-
[**
|
4275
|
+
[**InlineResponse20025**](InlineResponse20025.md)
|
4349
4276
|
|
4350
4277
|
### Authorization
|
4351
4278
|
|
@@ -4359,7 +4286,7 @@ Name | Type | Description | Notes
|
|
4359
4286
|
|
4360
4287
|
## get_application_event_types
|
4361
4288
|
|
4362
|
-
>
|
4289
|
+
> InlineResponse20031 get_application_event_types(application_id, opts)
|
4363
4290
|
|
4364
4291
|
List Applications event types
|
4365
4292
|
|
@@ -4412,7 +4339,7 @@ Name | Type | Description | Notes
|
|
4412
4339
|
|
4413
4340
|
### Return type
|
4414
4341
|
|
4415
|
-
[**
|
4342
|
+
[**InlineResponse20031**](InlineResponse20031.md)
|
4416
4343
|
|
4417
4344
|
### Authorization
|
4418
4345
|
|
@@ -4426,7 +4353,7 @@ Name | Type | Description | Notes
|
|
4426
4353
|
|
4427
4354
|
## get_application_events_without_total_count
|
4428
4355
|
|
4429
|
-
>
|
4356
|
+
> InlineResponse20030 get_application_events_without_total_count(application_id, opts)
|
4430
4357
|
|
4431
4358
|
List Applications events
|
4432
4359
|
|
@@ -4501,7 +4428,7 @@ Name | Type | Description | Notes
|
|
4501
4428
|
|
4502
4429
|
### Return type
|
4503
4430
|
|
4504
|
-
[**
|
4431
|
+
[**InlineResponse20030**](InlineResponse20030.md)
|
4505
4432
|
|
4506
4433
|
### Authorization
|
4507
4434
|
|
@@ -4576,7 +4503,7 @@ Name | Type | Description | Notes
|
|
4576
4503
|
|
4577
4504
|
## get_application_sessions
|
4578
4505
|
|
4579
|
-
>
|
4506
|
+
> InlineResponse20029 get_application_sessions(application_id, opts)
|
4580
4507
|
|
4581
4508
|
List Application sessions
|
4582
4509
|
|
@@ -4612,7 +4539,7 @@ opts = {
|
|
4612
4539
|
created_after: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Only return events created after this date. You can use any time zone setting. Talon.One will convert to UTC internally.
|
4613
4540
|
coupon: 'coupon_example', # String | Filter by sessions with this coupon. Must be exact match.
|
4614
4541
|
referral: 'referral_example', # String | Filter by sessions with this referral. Must be exact match.
|
4615
|
-
integration_id: 'integration_id_example', # String | Filter by sessions with this
|
4542
|
+
integration_id: 'integration_id_example', # String | Filter by sessions with this integration ID. Must be exact match.
|
4616
4543
|
store_integration_id: 'store_integration_id_example' # String | The integration ID of the store. You choose this ID when you create a store.
|
4617
4544
|
}
|
4618
4545
|
|
@@ -4640,12 +4567,12 @@ Name | Type | Description | Notes
|
|
4640
4567
|
**created_after** | **DateTime**| Only return events created after this date. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
4641
4568
|
**coupon** | **String**| Filter by sessions with this coupon. Must be exact match. | [optional]
|
4642
4569
|
**referral** | **String**| Filter by sessions with this referral. Must be exact match. | [optional]
|
4643
|
-
**integration_id** | **String**| Filter by sessions with this
|
4570
|
+
**integration_id** | **String**| Filter by sessions with this integration ID. Must be exact match. | [optional]
|
4644
4571
|
**store_integration_id** | **String**| The integration ID of the store. You choose this ID when you create a store. | [optional]
|
4645
4572
|
|
4646
4573
|
### Return type
|
4647
4574
|
|
4648
|
-
[**
|
4575
|
+
[**InlineResponse20029**](InlineResponse20029.md)
|
4649
4576
|
|
4650
4577
|
### Authorization
|
4651
4578
|
|
@@ -4659,7 +4586,7 @@ Name | Type | Description | Notes
|
|
4659
4586
|
|
4660
4587
|
## get_applications
|
4661
4588
|
|
4662
|
-
>
|
4589
|
+
> InlineResponse2007 get_applications(opts)
|
4663
4590
|
|
4664
4591
|
List Applications
|
4665
4592
|
|
@@ -4710,7 +4637,7 @@ Name | Type | Description | Notes
|
|
4710
4637
|
|
4711
4638
|
### Return type
|
4712
4639
|
|
4713
|
-
[**
|
4640
|
+
[**InlineResponse2007**](InlineResponse2007.md)
|
4714
4641
|
|
4715
4642
|
### Authorization
|
4716
4643
|
|
@@ -4783,7 +4710,7 @@ Name | Type | Description | Notes
|
|
4783
4710
|
|
4784
4711
|
## get_attributes
|
4785
4712
|
|
4786
|
-
>
|
4713
|
+
> InlineResponse20036 get_attributes(opts)
|
4787
4714
|
|
4788
4715
|
List custom attributes
|
4789
4716
|
|
@@ -4836,7 +4763,7 @@ Name | Type | Description | Notes
|
|
4836
4763
|
|
4837
4764
|
### Return type
|
4838
4765
|
|
4839
|
-
[**
|
4766
|
+
[**InlineResponse20036**](InlineResponse20036.md)
|
4840
4767
|
|
4841
4768
|
### Authorization
|
4842
4769
|
|
@@ -4850,7 +4777,7 @@ Name | Type | Description | Notes
|
|
4850
4777
|
|
4851
4778
|
## get_audience_memberships
|
4852
4779
|
|
4853
|
-
>
|
4780
|
+
> InlineResponse20034 get_audience_memberships(audience_id, opts)
|
4854
4781
|
|
4855
4782
|
List audience members
|
4856
4783
|
|
@@ -4905,7 +4832,7 @@ Name | Type | Description | Notes
|
|
4905
4832
|
|
4906
4833
|
### Return type
|
4907
4834
|
|
4908
|
-
[**
|
4835
|
+
[**InlineResponse20034**](InlineResponse20034.md)
|
4909
4836
|
|
4910
4837
|
### Authorization
|
4911
4838
|
|
@@ -4919,7 +4846,7 @@ Name | Type | Description | Notes
|
|
4919
4846
|
|
4920
4847
|
## get_audiences
|
4921
4848
|
|
4922
|
-
>
|
4849
|
+
> InlineResponse20032 get_audiences(opts)
|
4923
4850
|
|
4924
4851
|
List audiences
|
4925
4852
|
|
@@ -4972,7 +4899,7 @@ Name | Type | Description | Notes
|
|
4972
4899
|
|
4973
4900
|
### Return type
|
4974
4901
|
|
4975
|
-
[**
|
4902
|
+
[**InlineResponse20032**](InlineResponse20032.md)
|
4976
4903
|
|
4977
4904
|
### Authorization
|
4978
4905
|
|
@@ -4986,7 +4913,7 @@ Name | Type | Description | Notes
|
|
4986
4913
|
|
4987
4914
|
## get_audiences_analytics
|
4988
4915
|
|
4989
|
-
>
|
4916
|
+
> InlineResponse20033 get_audiences_analytics(audience_ids, opts)
|
4990
4917
|
|
4991
4918
|
List audience analytics
|
4992
4919
|
|
@@ -5035,7 +4962,7 @@ Name | Type | Description | Notes
|
|
5035
4962
|
|
5036
4963
|
### Return type
|
5037
4964
|
|
5038
|
-
[**
|
4965
|
+
[**InlineResponse20033**](InlineResponse20033.md)
|
5039
4966
|
|
5040
4967
|
### Authorization
|
5041
4968
|
|
@@ -5110,7 +5037,7 @@ Name | Type | Description | Notes
|
|
5110
5037
|
|
5111
5038
|
## get_campaign_analytics
|
5112
5039
|
|
5113
|
-
>
|
5040
|
+
> InlineResponse20023 get_campaign_analytics(application_id, campaign_id, range_start, range_end, opts)
|
5114
5041
|
|
5115
5042
|
Get analytics of campaigns
|
5116
5043
|
|
@@ -5165,7 +5092,7 @@ Name | Type | Description | Notes
|
|
5165
5092
|
|
5166
5093
|
### Return type
|
5167
5094
|
|
5168
|
-
[**
|
5095
|
+
[**InlineResponse20023**](InlineResponse20023.md)
|
5169
5096
|
|
5170
5097
|
### Authorization
|
5171
5098
|
|
@@ -5179,7 +5106,7 @@ Name | Type | Description | Notes
|
|
5179
5106
|
|
5180
5107
|
## get_campaign_by_attributes
|
5181
5108
|
|
5182
|
-
>
|
5109
|
+
> InlineResponse2008 get_campaign_by_attributes(application_id, body, opts)
|
5183
5110
|
|
5184
5111
|
List campaigns that match the given attributes
|
5185
5112
|
|
@@ -5236,7 +5163,7 @@ Name | Type | Description | Notes
|
|
5236
5163
|
|
5237
5164
|
### Return type
|
5238
5165
|
|
5239
|
-
[**
|
5166
|
+
[**InlineResponse2008**](InlineResponse2008.md)
|
5240
5167
|
|
5241
5168
|
### Authorization
|
5242
5169
|
|
@@ -5309,7 +5236,7 @@ Name | Type | Description | Notes
|
|
5309
5236
|
|
5310
5237
|
## get_campaign_groups
|
5311
5238
|
|
5312
|
-
>
|
5239
|
+
> InlineResponse20013 get_campaign_groups(opts)
|
5313
5240
|
|
5314
5241
|
List campaign access groups
|
5315
5242
|
|
@@ -5360,7 +5287,7 @@ Name | Type | Description | Notes
|
|
5360
5287
|
|
5361
5288
|
### Return type
|
5362
5289
|
|
5363
|
-
[**
|
5290
|
+
[**InlineResponse20013**](InlineResponse20013.md)
|
5364
5291
|
|
5365
5292
|
### Authorization
|
5366
5293
|
|
@@ -5374,7 +5301,7 @@ Name | Type | Description | Notes
|
|
5374
5301
|
|
5375
5302
|
## get_campaign_templates
|
5376
5303
|
|
5377
|
-
>
|
5304
|
+
> InlineResponse20014 get_campaign_templates(opts)
|
5378
5305
|
|
5379
5306
|
List campaign templates
|
5380
5307
|
|
@@ -5433,7 +5360,7 @@ Name | Type | Description | Notes
|
|
5433
5360
|
|
5434
5361
|
### Return type
|
5435
5362
|
|
5436
|
-
[**
|
5363
|
+
[**InlineResponse20014**](InlineResponse20014.md)
|
5437
5364
|
|
5438
5365
|
### Authorization
|
5439
5366
|
|
@@ -5447,7 +5374,7 @@ Name | Type | Description | Notes
|
|
5447
5374
|
|
5448
5375
|
## get_campaigns
|
5449
5376
|
|
5450
|
-
>
|
5377
|
+
> InlineResponse2008 get_campaigns(application_id, opts)
|
5451
5378
|
|
5452
5379
|
List campaigns
|
5453
5380
|
|
@@ -5483,7 +5410,7 @@ opts = {
|
|
5483
5410
|
created_before: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the campaign creation timestamp. You can use any time zone setting. Talon.One will convert to UTC internally.
|
5484
5411
|
created_after: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the campaign creation timestamp. You can use any time zone setting. Talon.One will convert to UTC internally.
|
5485
5412
|
campaign_group_id: 56, # Integer | Filter results to campaigns owned by the specified campaign access group ID.
|
5486
|
-
template_id: 56, # Integer | The ID of the
|
5413
|
+
template_id: 56, # Integer | The ID of the campaign template this campaign was created from.
|
5487
5414
|
store_id: 56 # Integer | Filter results to campaigns linked to the specified store ID.
|
5488
5415
|
}
|
5489
5416
|
|
@@ -5511,12 +5438,12 @@ Name | Type | Description | Notes
|
|
5511
5438
|
**created_before** | **DateTime**| Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the campaign creation timestamp. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
5512
5439
|
**created_after** | **DateTime**| Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the campaign creation timestamp. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
5513
5440
|
**campaign_group_id** | **Integer**| Filter results to campaigns owned by the specified campaign access group ID. | [optional]
|
5514
|
-
**template_id** | **Integer**| The ID of the
|
5441
|
+
**template_id** | **Integer**| The ID of the campaign template this campaign was created from. | [optional]
|
5515
5442
|
**store_id** | **Integer**| Filter results to campaigns linked to the specified store ID. | [optional]
|
5516
5443
|
|
5517
5444
|
### Return type
|
5518
5445
|
|
5519
|
-
[**
|
5446
|
+
[**InlineResponse2008**](InlineResponse2008.md)
|
5520
5447
|
|
5521
5448
|
### Authorization
|
5522
5449
|
|
@@ -5530,7 +5457,7 @@ Name | Type | Description | Notes
|
|
5530
5457
|
|
5531
5458
|
## get_changes
|
5532
5459
|
|
5533
|
-
>
|
5460
|
+
> InlineResponse20044 get_changes(opts)
|
5534
5461
|
|
5535
5462
|
Get audit logs for an account
|
5536
5463
|
|
@@ -5597,7 +5524,7 @@ Name | Type | Description | Notes
|
|
5597
5524
|
|
5598
5525
|
### Return type
|
5599
5526
|
|
5600
|
-
[**
|
5527
|
+
[**InlineResponse20044**](InlineResponse20044.md)
|
5601
5528
|
|
5602
5529
|
### Authorization
|
5603
5530
|
|
@@ -5674,7 +5601,7 @@ Name | Type | Description | Notes
|
|
5674
5601
|
|
5675
5602
|
## get_collection_items
|
5676
5603
|
|
5677
|
-
>
|
5604
|
+
> InlineResponse20021 get_collection_items(collection_id, opts)
|
5678
5605
|
|
5679
5606
|
Get collection items
|
5680
5607
|
|
@@ -5725,7 +5652,7 @@ Name | Type | Description | Notes
|
|
5725
5652
|
|
5726
5653
|
### Return type
|
5727
5654
|
|
5728
|
-
[**
|
5655
|
+
[**InlineResponse20021**](InlineResponse20021.md)
|
5729
5656
|
|
5730
5657
|
### Authorization
|
5731
5658
|
|
@@ -5739,7 +5666,7 @@ Name | Type | Description | Notes
|
|
5739
5666
|
|
5740
5667
|
## get_coupons_without_total_count
|
5741
5668
|
|
5742
|
-
>
|
5669
|
+
> InlineResponse20011 get_coupons_without_total_count(application_id, campaign_id, opts)
|
5743
5670
|
|
5744
5671
|
List coupons
|
5745
5672
|
|
@@ -5777,9 +5704,9 @@ opts = {
|
|
5777
5704
|
usable: 'usable_example', # String | Either \"true\" or \"false\". If \"true\", only coupons where `usageCounter < usageLimit` will be returned, \"false\" will return only coupons where `usageCounter >= usageLimit`.
|
5778
5705
|
redeemed: 'redeemed_example', # String | - `true`: only coupons where `usageCounter > 0` will be returned. - `false`: only coupons where `usageCounter = 0` will be returned. - This field cannot be used in conjunction with the `usable` query parameter.
|
5779
5706
|
referral_id: 56, # Integer | Filter the results by matching them with the ID of a referral. This filter shows the coupons created by redeeming a referral code.
|
5780
|
-
recipient_integration_id: 'recipient_integration_id_example', # String | Filter results by match with a profile
|
5707
|
+
recipient_integration_id: 'recipient_integration_id_example', # String | Filter results by match with a profile ID specified in the coupon's RecipientIntegrationId field.
|
5781
5708
|
batch_id: 'batch_id_example', # String | Filter results by batches of coupons
|
5782
|
-
exact_match: false, # Boolean | Filter results to an exact case-insensitive matching against the coupon code
|
5709
|
+
exact_match: false, # Boolean | Filter results to an exact case-insensitive matching against the coupon code.
|
5783
5710
|
expires_before: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the coupon expiration date timestamp. You can use any time zone setting. Talon.One will convert to UTC internally.
|
5784
5711
|
expires_after: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the coupon expiration date timestamp. You can use any time zone setting. Talon.One will convert to UTC internally.
|
5785
5712
|
starts_before: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the coupon start date timestamp. You can use any time zone setting. Talon.One will convert to UTC internally.
|
@@ -5813,9 +5740,9 @@ Name | Type | Description | Notes
|
|
5813
5740
|
**usable** | **String**| Either \"true\" or \"false\". If \"true\", only coupons where `usageCounter < usageLimit` will be returned, \"false\" will return only coupons where `usageCounter >= usageLimit`. | [optional]
|
5814
5741
|
**redeemed** | **String**| - `true`: only coupons where `usageCounter > 0` will be returned. - `false`: only coupons where `usageCounter = 0` will be returned. - This field cannot be used in conjunction with the `usable` query parameter. | [optional]
|
5815
5742
|
**referral_id** | **Integer**| Filter the results by matching them with the ID of a referral. This filter shows the coupons created by redeeming a referral code. | [optional]
|
5816
|
-
**recipient_integration_id** | **String**| Filter results by match with a profile
|
5743
|
+
**recipient_integration_id** | **String**| Filter results by match with a profile ID specified in the coupon's RecipientIntegrationId field. | [optional]
|
5817
5744
|
**batch_id** | **String**| Filter results by batches of coupons | [optional]
|
5818
|
-
**exact_match** | **Boolean**| Filter results to an exact case-insensitive matching against the coupon code | [optional] [default to false]
|
5745
|
+
**exact_match** | **Boolean**| Filter results to an exact case-insensitive matching against the coupon code. | [optional] [default to false]
|
5819
5746
|
**expires_before** | **DateTime**| Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the coupon expiration date timestamp. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
5820
5747
|
**expires_after** | **DateTime**| Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the coupon expiration date timestamp. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
5821
5748
|
**starts_before** | **DateTime**| Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the coupon start date timestamp. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
@@ -5824,7 +5751,7 @@ Name | Type | Description | Notes
|
|
5824
5751
|
|
5825
5752
|
### Return type
|
5826
5753
|
|
5827
|
-
[**
|
5754
|
+
[**InlineResponse20011**](InlineResponse20011.md)
|
5828
5755
|
|
5829
5756
|
### Authorization
|
5830
5757
|
|
@@ -5909,7 +5836,7 @@ Name | Type | Description | Notes
|
|
5909
5836
|
|
5910
5837
|
## get_customer_activity_reports_without_total_count
|
5911
5838
|
|
5912
|
-
>
|
5839
|
+
> InlineResponse20028 get_customer_activity_reports_without_total_count(range_start, range_end, application_id, opts)
|
5913
5840
|
|
5914
5841
|
Get Activity Reports for Application Customers
|
5915
5842
|
|
@@ -5941,10 +5868,10 @@ opts = {
|
|
5941
5868
|
page_size: 1000, # Integer | The number of items in the response.
|
5942
5869
|
skip: 56, # Integer | The number of items to skip when paging through large result sets.
|
5943
5870
|
sort: 'sort_example', # String | The field by which results should be sorted. By default, results are sorted in ascending order. To sort them in descending order, prefix the field name with `-`. **Note:** This parameter works only with numeric fields.
|
5944
|
-
name: 'name_example', # String | Only return reports matching the customer name
|
5871
|
+
name: 'name_example', # String | Only return reports matching the customer name.
|
5945
5872
|
integration_id: 'integration_id_example', # String | Filter results performing an exact matching against the profile integration identifier.
|
5946
|
-
campaign_name: 'campaign_name_example', # String | Only return reports matching the
|
5947
|
-
advocate_name: 'advocate_name_example' # String | Only return reports matching the current customer referrer name
|
5873
|
+
campaign_name: 'campaign_name_example', # String | Only return reports matching the campaign name.
|
5874
|
+
advocate_name: 'advocate_name_example' # String | Only return reports matching the current customer referrer name.
|
5948
5875
|
}
|
5949
5876
|
|
5950
5877
|
begin
|
@@ -5967,14 +5894,14 @@ Name | Type | Description | Notes
|
|
5967
5894
|
**page_size** | **Integer**| The number of items in the response. | [optional] [default to 1000]
|
5968
5895
|
**skip** | **Integer**| The number of items to skip when paging through large result sets. | [optional]
|
5969
5896
|
**sort** | **String**| The field by which results should be sorted. By default, results are sorted in ascending order. To sort them in descending order, prefix the field name with `-`. **Note:** This parameter works only with numeric fields. | [optional]
|
5970
|
-
**name** | **String**| Only return reports matching the customer name | [optional]
|
5897
|
+
**name** | **String**| Only return reports matching the customer name. | [optional]
|
5971
5898
|
**integration_id** | **String**| Filter results performing an exact matching against the profile integration identifier. | [optional]
|
5972
|
-
**campaign_name** | **String**| Only return reports matching the
|
5973
|
-
**advocate_name** | **String**| Only return reports matching the current customer referrer name | [optional]
|
5899
|
+
**campaign_name** | **String**| Only return reports matching the campaign name. | [optional]
|
5900
|
+
**advocate_name** | **String**| Only return reports matching the current customer referrer name. | [optional]
|
5974
5901
|
|
5975
5902
|
### Return type
|
5976
5903
|
|
5977
|
-
[**
|
5904
|
+
[**InlineResponse20028**](InlineResponse20028.md)
|
5978
5905
|
|
5979
5906
|
### Authorization
|
5980
5907
|
|
@@ -6116,7 +6043,7 @@ Name | Type | Description | Notes
|
|
6116
6043
|
|
6117
6044
|
## get_customer_profile_achievement_progress
|
6118
6045
|
|
6119
|
-
>
|
6046
|
+
> InlineResponse20049 get_customer_profile_achievement_progress(application_id, integration_id, opts)
|
6120
6047
|
|
6121
6048
|
List customer achievements
|
6122
6049
|
|
@@ -6142,7 +6069,7 @@ end
|
|
6142
6069
|
|
6143
6070
|
api_instance = TalonOne::ManagementApi.new
|
6144
6071
|
application_id = 56 # Integer | The ID of the Application. It is displayed in your Talon.One deployment URL.
|
6145
|
-
integration_id = 'integration_id_example' # String | The identifier
|
6072
|
+
integration_id = 'integration_id_example' # String | The integration identifier for this customer profile. Must be: - Unique within the deployment. - Stable for the customer. Do not use an ID that the customer can update themselves. For example, you can use a database ID. Once set, you cannot update this identifier.
|
6146
6073
|
opts = {
|
6147
6074
|
page_size: 50, # Integer | The number of items in the response.
|
6148
6075
|
skip: 56, # Integer | The number of items to skip when paging through large result sets.
|
@@ -6165,7 +6092,7 @@ end
|
|
6165
6092
|
Name | Type | Description | Notes
|
6166
6093
|
------------- | ------------- | ------------- | -------------
|
6167
6094
|
**application_id** | **Integer**| The ID of the Application. It is displayed in your Talon.One deployment URL. |
|
6168
|
-
**integration_id** | **String**| The identifier
|
6095
|
+
**integration_id** | **String**| The integration identifier for this customer profile. Must be: - Unique within the deployment. - Stable for the customer. Do not use an ID that the customer can update themselves. For example, you can use a database ID. Once set, you cannot update this identifier. |
|
6169
6096
|
**page_size** | **Integer**| The number of items in the response. | [optional] [default to 50]
|
6170
6097
|
**skip** | **Integer**| The number of items to skip when paging through large result sets. | [optional]
|
6171
6098
|
**achievement_id** | **Integer**| The ID of the achievement. You can get this ID with the [List achievement](https://docs.talon.one/management-api#tag/Achievements/operation/listAchievements) endpoint. | [optional]
|
@@ -6173,7 +6100,7 @@ Name | Type | Description | Notes
|
|
6173
6100
|
|
6174
6101
|
### Return type
|
6175
6102
|
|
6176
|
-
[**
|
6103
|
+
[**InlineResponse20049**](InlineResponse20049.md)
|
6177
6104
|
|
6178
6105
|
### Authorization
|
6179
6106
|
|
@@ -6187,7 +6114,7 @@ Name | Type | Description | Notes
|
|
6187
6114
|
|
6188
6115
|
## get_customer_profiles
|
6189
6116
|
|
6190
|
-
>
|
6117
|
+
> InlineResponse20027 get_customer_profiles(opts)
|
6191
6118
|
|
6192
6119
|
List customer profiles
|
6193
6120
|
|
@@ -6215,7 +6142,7 @@ api_instance = TalonOne::ManagementApi.new
|
|
6215
6142
|
opts = {
|
6216
6143
|
page_size: 1000, # Integer | The number of items in the response.
|
6217
6144
|
skip: 56, # Integer | The number of items to skip when paging through large result sets.
|
6218
|
-
sandbox: false # Boolean | Indicates whether you are pointing to a sandbox or
|
6145
|
+
sandbox: false # Boolean | Indicates whether you are pointing to a sandbox or live customer.
|
6219
6146
|
}
|
6220
6147
|
|
6221
6148
|
begin
|
@@ -6234,11 +6161,11 @@ Name | Type | Description | Notes
|
|
6234
6161
|
------------- | ------------- | ------------- | -------------
|
6235
6162
|
**page_size** | **Integer**| The number of items in the response. | [optional] [default to 1000]
|
6236
6163
|
**skip** | **Integer**| The number of items to skip when paging through large result sets. | [optional]
|
6237
|
-
**sandbox** | **Boolean**| Indicates whether you are pointing to a sandbox or
|
6164
|
+
**sandbox** | **Boolean**| Indicates whether you are pointing to a sandbox or live customer. | [optional] [default to false]
|
6238
6165
|
|
6239
6166
|
### Return type
|
6240
6167
|
|
6241
|
-
[**
|
6168
|
+
[**InlineResponse20027**](InlineResponse20027.md)
|
6242
6169
|
|
6243
6170
|
### Authorization
|
6244
6171
|
|
@@ -6252,7 +6179,7 @@ Name | Type | Description | Notes
|
|
6252
6179
|
|
6253
6180
|
## get_customers_by_attributes
|
6254
6181
|
|
6255
|
-
>
|
6182
|
+
> InlineResponse20026 get_customers_by_attributes(body, opts)
|
6256
6183
|
|
6257
6184
|
List customer profiles matching the given attributes
|
6258
6185
|
|
@@ -6281,7 +6208,7 @@ body = TalonOne::CustomerProfileSearchQuery.new # CustomerProfileSearchQuery | b
|
|
6281
6208
|
opts = {
|
6282
6209
|
page_size: 1000, # Integer | The number of items in the response.
|
6283
6210
|
skip: 56, # Integer | The number of items to skip when paging through large result sets.
|
6284
|
-
sandbox: false # Boolean | Indicates whether you are pointing to a sandbox or
|
6211
|
+
sandbox: false # Boolean | Indicates whether you are pointing to a sandbox or live customer.
|
6285
6212
|
}
|
6286
6213
|
|
6287
6214
|
begin
|
@@ -6301,11 +6228,11 @@ Name | Type | Description | Notes
|
|
6301
6228
|
**body** | [**CustomerProfileSearchQuery**](CustomerProfileSearchQuery.md)| body |
|
6302
6229
|
**page_size** | **Integer**| The number of items in the response. | [optional] [default to 1000]
|
6303
6230
|
**skip** | **Integer**| The number of items to skip when paging through large result sets. | [optional]
|
6304
|
-
**sandbox** | **Boolean**| Indicates whether you are pointing to a sandbox or
|
6231
|
+
**sandbox** | **Boolean**| Indicates whether you are pointing to a sandbox or live customer. | [optional] [default to false]
|
6305
6232
|
|
6306
6233
|
### Return type
|
6307
6234
|
|
6308
|
-
[**
|
6235
|
+
[**InlineResponse20026**](InlineResponse20026.md)
|
6309
6236
|
|
6310
6237
|
### Authorization
|
6311
6238
|
|
@@ -6317,9 +6244,76 @@ Name | Type | Description | Notes
|
|
6317
6244
|
- **Accept**: application/json
|
6318
6245
|
|
6319
6246
|
|
6247
|
+
## get_dashboard_statistics
|
6248
|
+
|
6249
|
+
> InlineResponse20016 get_dashboard_statistics(loyalty_program_id, range_start, range_end, opts)
|
6250
|
+
|
6251
|
+
Get statistics for loyalty dashboard
|
6252
|
+
|
6253
|
+
Retrieve the statistics displayed on the specified loyalty program's dashboard, such as the total active points, pending points, spent points, and expired points. **Important:** The returned data does not include the current day. All statistics are updated daily at 11:59 PM in the loyalty program time zone.
|
6254
|
+
|
6255
|
+
### Example
|
6256
|
+
|
6257
|
+
```ruby
|
6258
|
+
# load the gem
|
6259
|
+
require 'talon_one'
|
6260
|
+
# setup authorization
|
6261
|
+
TalonOne.configure do |config|
|
6262
|
+
# Configure API key authorization: management_key
|
6263
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
6264
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
6265
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
6266
|
+
|
6267
|
+
# Configure API key authorization: manager_auth
|
6268
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
6269
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
6270
|
+
#config.api_key_prefix['Authorization'] = 'Bearer'
|
6271
|
+
end
|
6272
|
+
|
6273
|
+
api_instance = TalonOne::ManagementApi.new
|
6274
|
+
loyalty_program_id = 56 # Integer | Identifier of the loyalty program. You can get the ID with the [List loyalty programs](https://docs.talon.one/management-api#tag/Loyalty/operation/getLoyaltyPrograms) endpoint.
|
6275
|
+
range_start = DateTime.parse('2013-10-20T19:20:30+01:00') # DateTime | Only return results from after this timestamp. **Note:** - This must be an RFC3339 timestamp string. - You can include a time component in your string, for example, `T23:59:59` to specify the end of the day. The time zone setting considered is `UTC`. If you do not include a time component, a default time value of `T00:00:00` (midnight) in `UTC` is considered.
|
6276
|
+
range_end = DateTime.parse('2013-10-20T19:20:30+01:00') # DateTime | Only return results from before this timestamp. **Note:** - This must be an RFC3339 timestamp string. - You can include a time component in your string, for example, `T23:59:59` to specify the end of the day. The time zone setting considered is `UTC`. If you do not include a time component, a default time value of `T00:00:00` (midnight) in `UTC` is considered.
|
6277
|
+
opts = {
|
6278
|
+
subledger_id: 'subledger_id_example' # String | The ID of the subledger by which we filter the data.
|
6279
|
+
}
|
6280
|
+
|
6281
|
+
begin
|
6282
|
+
#Get statistics for loyalty dashboard
|
6283
|
+
result = api_instance.get_dashboard_statistics(loyalty_program_id, range_start, range_end, opts)
|
6284
|
+
p result
|
6285
|
+
rescue TalonOne::ApiError => e
|
6286
|
+
puts "Exception when calling ManagementApi->get_dashboard_statistics: #{e}"
|
6287
|
+
end
|
6288
|
+
```
|
6289
|
+
|
6290
|
+
### Parameters
|
6291
|
+
|
6292
|
+
|
6293
|
+
Name | Type | Description | Notes
|
6294
|
+
------------- | ------------- | ------------- | -------------
|
6295
|
+
**loyalty_program_id** | **Integer**| Identifier of the loyalty program. You can get the ID with the [List loyalty programs](https://docs.talon.one/management-api#tag/Loyalty/operation/getLoyaltyPrograms) endpoint. |
|
6296
|
+
**range_start** | **DateTime**| Only return results from after this timestamp. **Note:** - This must be an RFC3339 timestamp string. - You can include a time component in your string, for example, `T23:59:59` to specify the end of the day. The time zone setting considered is `UTC`. If you do not include a time component, a default time value of `T00:00:00` (midnight) in `UTC` is considered. |
|
6297
|
+
**range_end** | **DateTime**| Only return results from before this timestamp. **Note:** - This must be an RFC3339 timestamp string. - You can include a time component in your string, for example, `T23:59:59` to specify the end of the day. The time zone setting considered is `UTC`. If you do not include a time component, a default time value of `T00:00:00` (midnight) in `UTC` is considered. |
|
6298
|
+
**subledger_id** | **String**| The ID of the subledger by which we filter the data. | [optional]
|
6299
|
+
|
6300
|
+
### Return type
|
6301
|
+
|
6302
|
+
[**InlineResponse20016**](InlineResponse20016.md)
|
6303
|
+
|
6304
|
+
### Authorization
|
6305
|
+
|
6306
|
+
[management_key](../README.md#management_key), [manager_auth](../README.md#manager_auth)
|
6307
|
+
|
6308
|
+
### HTTP request headers
|
6309
|
+
|
6310
|
+
- **Content-Type**: Not defined
|
6311
|
+
- **Accept**: application/json
|
6312
|
+
|
6313
|
+
|
6320
6314
|
## get_event_types
|
6321
6315
|
|
6322
|
-
>
|
6316
|
+
> InlineResponse20042 get_event_types(opts)
|
6323
6317
|
|
6324
6318
|
List event types
|
6325
6319
|
|
@@ -6374,7 +6368,7 @@ Name | Type | Description | Notes
|
|
6374
6368
|
|
6375
6369
|
### Return type
|
6376
6370
|
|
6377
|
-
[**
|
6371
|
+
[**InlineResponse20042**](InlineResponse20042.md)
|
6378
6372
|
|
6379
6373
|
### Authorization
|
6380
6374
|
|
@@ -6388,7 +6382,7 @@ Name | Type | Description | Notes
|
|
6388
6382
|
|
6389
6383
|
## get_exports
|
6390
6384
|
|
6391
|
-
>
|
6385
|
+
> InlineResponse20045 get_exports(opts)
|
6392
6386
|
|
6393
6387
|
Get exports
|
6394
6388
|
|
@@ -6443,7 +6437,7 @@ Name | Type | Description | Notes
|
|
6443
6437
|
|
6444
6438
|
### Return type
|
6445
6439
|
|
6446
|
-
[**
|
6440
|
+
[**InlineResponse20045**](InlineResponse20045.md)
|
6447
6441
|
|
6448
6442
|
### Authorization
|
6449
6443
|
|
@@ -6518,7 +6512,7 @@ Name | Type | Description | Notes
|
|
6518
6512
|
|
6519
6513
|
## get_loyalty_card_transaction_logs
|
6520
6514
|
|
6521
|
-
>
|
6515
|
+
> InlineResponse20019 get_loyalty_card_transaction_logs(loyalty_program_id, loyalty_card_id, opts)
|
6522
6516
|
|
6523
6517
|
List card's transactions
|
6524
6518
|
|
@@ -6577,7 +6571,7 @@ Name | Type | Description | Notes
|
|
6577
6571
|
|
6578
6572
|
### Return type
|
6579
6573
|
|
6580
|
-
[**
|
6574
|
+
[**InlineResponse20019**](InlineResponse20019.md)
|
6581
6575
|
|
6582
6576
|
### Authorization
|
6583
6577
|
|
@@ -6591,7 +6585,7 @@ Name | Type | Description | Notes
|
|
6591
6585
|
|
6592
6586
|
## get_loyalty_cards
|
6593
6587
|
|
6594
|
-
>
|
6588
|
+
> InlineResponse20018 get_loyalty_cards(loyalty_program_id, opts)
|
6595
6589
|
|
6596
6590
|
List loyalty cards
|
6597
6591
|
|
@@ -6650,7 +6644,7 @@ Name | Type | Description | Notes
|
|
6650
6644
|
|
6651
6645
|
### Return type
|
6652
6646
|
|
6653
|
-
[**
|
6647
|
+
[**InlineResponse20018**](InlineResponse20018.md)
|
6654
6648
|
|
6655
6649
|
### Authorization
|
6656
6650
|
|
@@ -6690,7 +6684,7 @@ end
|
|
6690
6684
|
|
6691
6685
|
api_instance = TalonOne::ManagementApi.new
|
6692
6686
|
loyalty_program_id = 'loyalty_program_id_example' # String | The identifier for the loyalty program.
|
6693
|
-
integration_id = 'integration_id_example' # String | The identifier
|
6687
|
+
integration_id = 'integration_id_example' # String | The integration identifier for this customer profile. Must be: - Unique within the deployment. - Stable for the customer. Do not use an ID that the customer can update themselves. For example, you can use a database ID. Once set, you cannot update this identifier.
|
6694
6688
|
|
6695
6689
|
begin
|
6696
6690
|
#Get customer's full loyalty ledger
|
@@ -6707,7 +6701,7 @@ end
|
|
6707
6701
|
Name | Type | Description | Notes
|
6708
6702
|
------------- | ------------- | ------------- | -------------
|
6709
6703
|
**loyalty_program_id** | **String**| The identifier for the loyalty program. |
|
6710
|
-
**integration_id** | **String**| The identifier
|
6704
|
+
**integration_id** | **String**| The integration identifier for this customer profile. Must be: - Unique within the deployment. - Stable for the customer. Do not use an ID that the customer can update themselves. For example, you can use a database ID. Once set, you cannot update this identifier. |
|
6711
6705
|
|
6712
6706
|
### Return type
|
6713
6707
|
|
@@ -6784,7 +6778,7 @@ Name | Type | Description | Notes
|
|
6784
6778
|
|
6785
6779
|
## get_loyalty_program_transactions
|
6786
6780
|
|
6787
|
-
>
|
6781
|
+
> InlineResponse20017 get_loyalty_program_transactions(loyalty_program_id, opts)
|
6788
6782
|
|
6789
6783
|
List loyalty program transactions
|
6790
6784
|
|
@@ -6843,7 +6837,7 @@ Name | Type | Description | Notes
|
|
6843
6837
|
|
6844
6838
|
### Return type
|
6845
6839
|
|
6846
|
-
[**
|
6840
|
+
[**InlineResponse20017**](InlineResponse20017.md)
|
6847
6841
|
|
6848
6842
|
### Authorization
|
6849
6843
|
|
@@ -6857,7 +6851,7 @@ Name | Type | Description | Notes
|
|
6857
6851
|
|
6858
6852
|
## get_loyalty_programs
|
6859
6853
|
|
6860
|
-
>
|
6854
|
+
> InlineResponse20015 get_loyalty_programs
|
6861
6855
|
|
6862
6856
|
List loyalty programs
|
6863
6857
|
|
@@ -6898,7 +6892,7 @@ This endpoint does not need any parameter.
|
|
6898
6892
|
|
6899
6893
|
### Return type
|
6900
6894
|
|
6901
|
-
[**
|
6895
|
+
[**InlineResponse20015**](InlineResponse20015.md)
|
6902
6896
|
|
6903
6897
|
### Authorization
|
6904
6898
|
|
@@ -6916,7 +6910,7 @@ This endpoint does not need any parameter.
|
|
6916
6910
|
|
6917
6911
|
Get loyalty program statistics
|
6918
6912
|
|
6919
|
-
|
6913
|
+
⚠️ Deprecation notice: Support for requests to this endpoint will end soon. To retrieve statistics for a loyalty program, use the [Get statistics for loyalty dashboard](/management-api#tag/Loyalty/operation/getDashboardStatistics) endpoint. Retrieve the statistics of the specified loyalty program, such as the total active points, pending points, spent points, and expired points.
|
6920
6914
|
|
6921
6915
|
### Example
|
6922
6916
|
|
@@ -6971,7 +6965,7 @@ Name | Type | Description | Notes
|
|
6971
6965
|
|
6972
6966
|
## get_referrals_without_total_count
|
6973
6967
|
|
6974
|
-
>
|
6968
|
+
> InlineResponse20012 get_referrals_without_total_count(application_id, campaign_id, opts)
|
6975
6969
|
|
6976
6970
|
List referrals
|
6977
6971
|
|
@@ -7007,7 +7001,7 @@ opts = {
|
|
7007
7001
|
created_after: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the referral creation timestamp. You can use any time zone setting. Talon.One will convert to UTC internally.
|
7008
7002
|
valid: 'valid_example', # String | Either \"expired\", \"validNow\", or \"validFuture\". The first option matches referrals in which the expiration date is set and in the past. The second matches referrals in which start date is null or in the past and expiration date is null or in the future, the third matches referrals in which start date is set and in the future.
|
7009
7003
|
usable: 'usable_example', # String | Either \"true\" or \"false\". If \"true\", only referrals where `usageCounter < usageLimit` will be returned, \"false\" will return only referrals where `usageCounter >= usageLimit`.
|
7010
|
-
advocate: 'advocate_example' # String | Filter results by match with a profile
|
7004
|
+
advocate: 'advocate_example' # String | Filter results by match with a profile ID specified in the referral's AdvocateProfileIntegrationId field.
|
7011
7005
|
}
|
7012
7006
|
|
7013
7007
|
begin
|
@@ -7034,11 +7028,11 @@ Name | Type | Description | Notes
|
|
7034
7028
|
**created_after** | **DateTime**| Filter results comparing the parameter value, expected to be an RFC3339 timestamp string, to the referral creation timestamp. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
7035
7029
|
**valid** | **String**| Either \"expired\", \"validNow\", or \"validFuture\". The first option matches referrals in which the expiration date is set and in the past. The second matches referrals in which start date is null or in the past and expiration date is null or in the future, the third matches referrals in which start date is set and in the future. | [optional]
|
7036
7030
|
**usable** | **String**| Either \"true\" or \"false\". If \"true\", only referrals where `usageCounter < usageLimit` will be returned, \"false\" will return only referrals where `usageCounter >= usageLimit`. | [optional]
|
7037
|
-
**advocate** | **String**| Filter results by match with a profile
|
7031
|
+
**advocate** | **String**| Filter results by match with a profile ID specified in the referral's AdvocateProfileIntegrationId field. | [optional]
|
7038
7032
|
|
7039
7033
|
### Return type
|
7040
7034
|
|
7041
|
-
[**
|
7035
|
+
[**InlineResponse20012**](InlineResponse20012.md)
|
7042
7036
|
|
7043
7037
|
### Authorization
|
7044
7038
|
|
@@ -7174,7 +7168,7 @@ Name | Type | Description | Notes
|
|
7174
7168
|
|
7175
7169
|
## get_rulesets
|
7176
7170
|
|
7177
|
-
>
|
7171
|
+
> InlineResponse2009 get_rulesets(application_id, campaign_id, opts)
|
7178
7172
|
|
7179
7173
|
List campaign rulesets
|
7180
7174
|
|
@@ -7229,7 +7223,7 @@ Name | Type | Description | Notes
|
|
7229
7223
|
|
7230
7224
|
### Return type
|
7231
7225
|
|
7232
|
-
[**
|
7226
|
+
[**InlineResponse2009**](InlineResponse2009.md)
|
7233
7227
|
|
7234
7228
|
### Authorization
|
7235
7229
|
|
@@ -7363,7 +7357,7 @@ Name | Type | Description | Notes
|
|
7363
7357
|
|
7364
7358
|
## get_users
|
7365
7359
|
|
7366
|
-
>
|
7360
|
+
> InlineResponse20043 get_users(opts)
|
7367
7361
|
|
7368
7362
|
List users in account
|
7369
7363
|
|
@@ -7414,7 +7408,7 @@ Name | Type | Description | Notes
|
|
7414
7408
|
|
7415
7409
|
### Return type
|
7416
7410
|
|
7417
|
-
[**
|
7411
|
+
[**InlineResponse20043**](InlineResponse20043.md)
|
7418
7412
|
|
7419
7413
|
### Authorization
|
7420
7414
|
|
@@ -7487,7 +7481,7 @@ Name | Type | Description | Notes
|
|
7487
7481
|
|
7488
7482
|
## get_webhook_activation_logs
|
7489
7483
|
|
7490
|
-
>
|
7484
|
+
> InlineResponse20040 get_webhook_activation_logs(opts)
|
7491
7485
|
|
7492
7486
|
List webhook activation log entries
|
7493
7487
|
|
@@ -7517,9 +7511,9 @@ opts = {
|
|
7517
7511
|
skip: 56, # Integer | The number of items to skip when paging through large result sets.
|
7518
7512
|
sort: 'sort_example', # String | The field by which results should be sorted. By default, results are sorted in ascending order. To sort them in descending order, prefix the field name with `-`. **Note:** This parameter works only with numeric fields.
|
7519
7513
|
integration_request_uuid: 'integration_request_uuid_example', # String | Filter results by integration request UUID.
|
7520
|
-
webhook_id: 3.4, # Float | Filter results by
|
7514
|
+
webhook_id: 3.4, # Float | Filter results by webhook id.
|
7521
7515
|
application_id: 3.4, # Float | Filter results by Application ID.
|
7522
|
-
campaign_id: 3.4, # Float | Filter results by campaign.
|
7516
|
+
campaign_id: 3.4, # Float | Filter results by campaign ID.
|
7523
7517
|
created_before: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Only return events created before this date. You can use any time zone setting. Talon.One will convert to UTC internally.
|
7524
7518
|
created_after: DateTime.parse('2013-10-20T19:20:30+01:00') # DateTime | Only return events created after this date. You can use any time zone setting. Talon.One will convert to UTC internally.
|
7525
7519
|
}
|
@@ -7542,15 +7536,15 @@ Name | Type | Description | Notes
|
|
7542
7536
|
**skip** | **Integer**| The number of items to skip when paging through large result sets. | [optional]
|
7543
7537
|
**sort** | **String**| The field by which results should be sorted. By default, results are sorted in ascending order. To sort them in descending order, prefix the field name with `-`. **Note:** This parameter works only with numeric fields. | [optional]
|
7544
7538
|
**integration_request_uuid** | **String**| Filter results by integration request UUID. | [optional]
|
7545
|
-
**webhook_id** | **Float**| Filter results by
|
7539
|
+
**webhook_id** | **Float**| Filter results by webhook id. | [optional]
|
7546
7540
|
**application_id** | **Float**| Filter results by Application ID. | [optional]
|
7547
|
-
**campaign_id** | **Float**| Filter results by campaign. | [optional]
|
7541
|
+
**campaign_id** | **Float**| Filter results by campaign ID. | [optional]
|
7548
7542
|
**created_before** | **DateTime**| Only return events created before this date. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
7549
7543
|
**created_after** | **DateTime**| Only return events created after this date. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
7550
7544
|
|
7551
7545
|
### Return type
|
7552
7546
|
|
7553
|
-
[**
|
7547
|
+
[**InlineResponse20040**](InlineResponse20040.md)
|
7554
7548
|
|
7555
7549
|
### Authorization
|
7556
7550
|
|
@@ -7564,7 +7558,7 @@ Name | Type | Description | Notes
|
|
7564
7558
|
|
7565
7559
|
## get_webhook_logs
|
7566
7560
|
|
7567
|
-
>
|
7561
|
+
> InlineResponse20041 get_webhook_logs(opts)
|
7568
7562
|
|
7569
7563
|
List webhook log entries
|
7570
7564
|
|
@@ -7594,9 +7588,9 @@ opts = {
|
|
7594
7588
|
skip: 56, # Integer | The number of items to skip when paging through large result sets.
|
7595
7589
|
sort: 'sort_example', # String | The field by which results should be sorted. By default, results are sorted in ascending order. To sort them in descending order, prefix the field name with `-`. **Note:** This parameter works only with numeric fields.
|
7596
7590
|
status: 'status_example', # String | Filter results by HTTP status codes.
|
7597
|
-
webhook_id: 3.4, # Float | Filter results by
|
7591
|
+
webhook_id: 3.4, # Float | Filter results by webhook id.
|
7598
7592
|
application_id: 3.4, # Float | Filter results by Application ID.
|
7599
|
-
campaign_id: 3.4, # Float | Filter results by campaign.
|
7593
|
+
campaign_id: 3.4, # Float | Filter results by campaign ID.
|
7600
7594
|
request_uuid: 'request_uuid_example', # String | Filter results by request UUID.
|
7601
7595
|
created_before: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where request and response times to return entries before parameter value, expected to be an RFC3339 timestamp string. You can use any time zone setting. Talon.One will convert to UTC internally.
|
7602
7596
|
created_after: DateTime.parse('2013-10-20T19:20:30+01:00') # DateTime | Filter results where request and response times to return entries after parameter value, expected to be an RFC3339 timestamp string. You can use any time zone setting. Talon.One will convert to UTC internally.
|
@@ -7620,16 +7614,16 @@ Name | Type | Description | Notes
|
|
7620
7614
|
**skip** | **Integer**| The number of items to skip when paging through large result sets. | [optional]
|
7621
7615
|
**sort** | **String**| The field by which results should be sorted. By default, results are sorted in ascending order. To sort them in descending order, prefix the field name with `-`. **Note:** This parameter works only with numeric fields. | [optional]
|
7622
7616
|
**status** | **String**| Filter results by HTTP status codes. | [optional]
|
7623
|
-
**webhook_id** | **Float**| Filter results by
|
7617
|
+
**webhook_id** | **Float**| Filter results by webhook id. | [optional]
|
7624
7618
|
**application_id** | **Float**| Filter results by Application ID. | [optional]
|
7625
|
-
**campaign_id** | **Float**| Filter results by campaign. | [optional]
|
7619
|
+
**campaign_id** | **Float**| Filter results by campaign ID. | [optional]
|
7626
7620
|
**request_uuid** | **String**| Filter results by request UUID. | [optional]
|
7627
7621
|
**created_before** | **DateTime**| Filter results where request and response times to return entries before parameter value, expected to be an RFC3339 timestamp string. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
7628
7622
|
**created_after** | **DateTime**| Filter results where request and response times to return entries after parameter value, expected to be an RFC3339 timestamp string. You can use any time zone setting. Talon.One will convert to UTC internally. | [optional]
|
7629
7623
|
|
7630
7624
|
### Return type
|
7631
7625
|
|
7632
|
-
[**
|
7626
|
+
[**InlineResponse20041**](InlineResponse20041.md)
|
7633
7627
|
|
7634
7628
|
### Authorization
|
7635
7629
|
|
@@ -7643,7 +7637,7 @@ Name | Type | Description | Notes
|
|
7643
7637
|
|
7644
7638
|
## get_webhooks
|
7645
7639
|
|
7646
|
-
>
|
7640
|
+
> InlineResponse20039 get_webhooks(opts)
|
7647
7641
|
|
7648
7642
|
List webhooks
|
7649
7643
|
|
@@ -7704,7 +7698,7 @@ Name | Type | Description | Notes
|
|
7704
7698
|
|
7705
7699
|
### Return type
|
7706
7700
|
|
7707
|
-
[**
|
7701
|
+
[**InlineResponse20039**](InlineResponse20039.md)
|
7708
7702
|
|
7709
7703
|
### Authorization
|
7710
7704
|
|
@@ -8110,7 +8104,7 @@ Name | Type | Description | Notes
|
|
8110
8104
|
|
8111
8105
|
Import loyalty cards
|
8112
8106
|
|
8113
|
-
Upload a CSV file containing the loyalty cards that you want to use in your card-based loyalty program. Send the file as multipart data. It contains the following columns for each card: - `identifier` (required): The alphanumeric identifier of the loyalty card. - `state` (required): The state of the loyalty card. It can be `active` or `inactive`. - `customerprofileids` (optional): An array of strings representing the identifiers of the customer profiles linked to the loyalty card. **Note:** We recommend limiting your file size to 500MB. **Example:** ```csv identifier,state,customerprofileids 123-456-789AT,active,Alexa001;UserA ```
|
8107
|
+
Upload a CSV file containing the loyalty cards that you want to use in your card-based loyalty program. Send the file as multipart data. It contains the following columns for each card: - `identifier` (required): The alphanumeric identifier of the loyalty card. - `state` (required): The state of the loyalty card. It can be `active` or `inactive`. - `customerprofileids` (optional): An array of strings representing the identifiers of the customer profiles linked to the loyalty card. The identifiers should be separated with a semicolon (;). **Note:** We recommend limiting your file size to 500MB. **Example:** ```csv identifier,state,customerprofileids 123-456-789AT,active,Alexa001;UserA ```
|
8114
8108
|
|
8115
8109
|
### Example
|
8116
8110
|
|
@@ -8236,7 +8230,7 @@ Name | Type | Description | Notes
|
|
8236
8230
|
|
8237
8231
|
Import loyalty points
|
8238
8232
|
|
8239
|
-
Upload a CSV file containing the loyalty points you want to import into a given loyalty program. Send the file as multipart data. Depending on the type of loyalty program, you can import points into a given customer profile or loyalty card. The CSV file contains the following columns: - `customerprofileid` (optional): For profile-based loyalty programs, the integration ID of the customer profile where the loyalty points are imported. - `identifier` (optional): For card-based loyalty programs, the identifier of the loyalty card where the loyalty points are imported. - `amount`: The amount of points to award to the customer profile. - `startdate` (optional): The earliest date when the points can be redeemed. The points are `active` from this date until the expiration date. **Note**: It must be an RFC3339 timestamp string or string `immediate`. Empty or missing values are considered `immediate`. - `expirydate` (optional): The latest date when the points can be redeemed. The points are `expired` after this date. **Note**: It must be an RFC3339 timestamp string or string `unlimited`. Empty or missing values are considered `unlimited`. - `subledgerid` (optional): The ID of the subledger that should received the points. - `reason` (optional): The reason why these points are awarded. You can use the time zone of your choice. It is converted to UTC internally by Talon.One. **Note:** For existing customer profiles and loyalty cards, the imported points are added to any previous active or pending points, depending on the value provided for `startdate`. If `startdate` matches the current date, the imported points are _active_. If it is later, the points are _pending_ until the date provided for `startdate` is reached. **Note:** We recommend limiting your file size to 500MB. **Example for profile-based programs:** ```text customerprofileid,amount,startdate,expirydate,subledgerid,reason URNGV8294NV,100,2009-11-10T23:00:00Z,2009-11-11T23:00:00Z,subledger1,appeasement ``` **Example for card-based programs:** ```text identifier,amount,startdate,expirydate,subledgerid,reason summer-loyalty-card-0543,100,2009-11-10T23:00:00Z,2009-11-11T23:00:00Z,subledger1,appeasement ```
|
8233
|
+
Upload a CSV file containing the loyalty points you want to import into a given loyalty program. Send the file as multipart data. Depending on the type of loyalty program, you can import points into a given customer profile or loyalty card. The CSV file contains the following columns: - `customerprofileid` (optional): For profile-based loyalty programs, the integration ID of the customer profile where the loyalty points are imported. **Note**: If the customer profile does not exist, it will be created. The profile will not be visible in any Application until a session or profile update is received for that profile. - `identifier` (optional): For card-based loyalty programs, the identifier of the loyalty card where the loyalty points are imported. - `amount`: The amount of points to award to the customer profile. - `startdate` (optional): The earliest date when the points can be redeemed. The points are `active` from this date until the expiration date. **Note**: It must be an RFC3339 timestamp string or string `immediate`. Empty or missing values are considered `immediate`. - `expirydate` (optional): The latest date when the points can be redeemed. The points are `expired` after this date. **Note**: It must be an RFC3339 timestamp string or string `unlimited`. Empty or missing values are considered `unlimited`. - `subledgerid` (optional): The ID of the subledger that should received the points. - `reason` (optional): The reason why these points are awarded. You can use the time zone of your choice. It is converted to UTC internally by Talon.One. **Note:** For existing customer profiles and loyalty cards, the imported points are added to any previous active or pending points, depending on the value provided for `startdate`. If `startdate` matches the current date, the imported points are _active_. If it is later, the points are _pending_ until the date provided for `startdate` is reached. **Note:** We recommend limiting your file size to 500MB. **Example for profile-based programs:** ```text customerprofileid,amount,startdate,expirydate,subledgerid,reason URNGV8294NV,100,2009-11-10T23:00:00Z,2009-11-11T23:00:00Z,subledger1,appeasement ``` **Example for card-based programs:** ```text identifier,amount,startdate,expirydate,subledgerid,reason summer-loyalty-card-0543,100,2009-11-10T23:00:00Z,2009-11-11T23:00:00Z,subledger1,appeasement ```
|
8240
8234
|
|
8241
8235
|
### Example
|
8242
8236
|
|
@@ -8481,7 +8475,7 @@ nil (empty response body)
|
|
8481
8475
|
|
8482
8476
|
## list_account_collections
|
8483
8477
|
|
8484
|
-
>
|
8478
|
+
> InlineResponse20020 list_account_collections(opts)
|
8485
8479
|
|
8486
8480
|
List collections in account
|
8487
8481
|
|
@@ -8536,7 +8530,7 @@ Name | Type | Description | Notes
|
|
8536
8530
|
|
8537
8531
|
### Return type
|
8538
8532
|
|
8539
|
-
[**
|
8533
|
+
[**InlineResponse20020**](InlineResponse20020.md)
|
8540
8534
|
|
8541
8535
|
### Authorization
|
8542
8536
|
|
@@ -8550,7 +8544,7 @@ Name | Type | Description | Notes
|
|
8550
8544
|
|
8551
8545
|
## list_achievements
|
8552
8546
|
|
8553
|
-
>
|
8547
|
+
> InlineResponse20048 list_achievements(application_id, campaign_id, opts)
|
8554
8548
|
|
8555
8549
|
List achievements
|
8556
8550
|
|
@@ -8605,7 +8599,7 @@ Name | Type | Description | Notes
|
|
8605
8599
|
|
8606
8600
|
### Return type
|
8607
8601
|
|
8608
|
-
[**
|
8602
|
+
[**InlineResponse20048**](InlineResponse20048.md)
|
8609
8603
|
|
8610
8604
|
### Authorization
|
8611
8605
|
|
@@ -8619,7 +8613,7 @@ Name | Type | Description | Notes
|
|
8619
8613
|
|
8620
8614
|
## list_all_roles_v2
|
8621
8615
|
|
8622
|
-
>
|
8616
|
+
> InlineResponse20046 list_all_roles_v2
|
8623
8617
|
|
8624
8618
|
List roles
|
8625
8619
|
|
@@ -8660,7 +8654,7 @@ This endpoint does not need any parameter.
|
|
8660
8654
|
|
8661
8655
|
### Return type
|
8662
8656
|
|
8663
|
-
[**
|
8657
|
+
[**InlineResponse20046**](InlineResponse20046.md)
|
8664
8658
|
|
8665
8659
|
### Authorization
|
8666
8660
|
|
@@ -8674,7 +8668,7 @@ This endpoint does not need any parameter.
|
|
8674
8668
|
|
8675
8669
|
## list_catalog_items
|
8676
8670
|
|
8677
|
-
>
|
8671
|
+
> InlineResponse20037 list_catalog_items(catalog_id, opts)
|
8678
8672
|
|
8679
8673
|
List items in a catalog
|
8680
8674
|
|
@@ -8731,7 +8725,7 @@ Name | Type | Description | Notes
|
|
8731
8725
|
|
8732
8726
|
### Return type
|
8733
8727
|
|
8734
|
-
[**
|
8728
|
+
[**InlineResponse20037**](InlineResponse20037.md)
|
8735
8729
|
|
8736
8730
|
### Authorization
|
8737
8731
|
|
@@ -8745,7 +8739,7 @@ Name | Type | Description | Notes
|
|
8745
8739
|
|
8746
8740
|
## list_collections
|
8747
8741
|
|
8748
|
-
>
|
8742
|
+
> InlineResponse20020 list_collections(application_id, campaign_id, opts)
|
8749
8743
|
|
8750
8744
|
List collections in campaign
|
8751
8745
|
|
@@ -8804,7 +8798,7 @@ Name | Type | Description | Notes
|
|
8804
8798
|
|
8805
8799
|
### Return type
|
8806
8800
|
|
8807
|
-
[**
|
8801
|
+
[**InlineResponse20020**](InlineResponse20020.md)
|
8808
8802
|
|
8809
8803
|
### Authorization
|
8810
8804
|
|
@@ -8818,7 +8812,7 @@ Name | Type | Description | Notes
|
|
8818
8812
|
|
8819
8813
|
## list_collections_in_application
|
8820
8814
|
|
8821
|
-
>
|
8815
|
+
> InlineResponse20020 list_collections_in_application(application_id, opts)
|
8822
8816
|
|
8823
8817
|
List collections in Application
|
8824
8818
|
|
@@ -8875,7 +8869,7 @@ Name | Type | Description | Notes
|
|
8875
8869
|
|
8876
8870
|
### Return type
|
8877
8871
|
|
8878
|
-
[**
|
8872
|
+
[**InlineResponse20020**](InlineResponse20020.md)
|
8879
8873
|
|
8880
8874
|
### Authorization
|
8881
8875
|
|
@@ -8889,7 +8883,7 @@ Name | Type | Description | Notes
|
|
8889
8883
|
|
8890
8884
|
## list_stores
|
8891
8885
|
|
8892
|
-
>
|
8886
|
+
> InlineResponse20047 list_stores(application_id, opts)
|
8893
8887
|
|
8894
8888
|
List stores
|
8895
8889
|
|
@@ -8920,7 +8914,7 @@ opts = {
|
|
8920
8914
|
skip: 56, # Integer | The number of items to skip when paging through large result sets.
|
8921
8915
|
sort: 'sort_example', # String | The field by which results should be sorted. By default, results are sorted in ascending order. To sort them in descending order, prefix the field name with `-`. **Note:** This parameter works only with numeric fields.
|
8922
8916
|
with_total_result_size: true, # Boolean | When this flag is set, the result includes the total size of the result, across all pages. This might decrease performance on large data sets. - When `true`: `hasMore` is true when there is a next page. `totalResultSize` is always zero. - When `false`: `hasMore` is always false. `totalResultSize` contains the total number of results for this query.
|
8923
|
-
campaign_id: 3.4, # Float | Filter results by campaign.
|
8917
|
+
campaign_id: 3.4, # Float | Filter results by campaign ID.
|
8924
8918
|
name: 'name_example', # String | The name of the store.
|
8925
8919
|
integration_id: 'integration_id_example', # String | The integration ID of the store.
|
8926
8920
|
query: 'query_example' # String | Filter results by `name` or `integrationId`.
|
@@ -8945,14 +8939,14 @@ Name | Type | Description | Notes
|
|
8945
8939
|
**skip** | **Integer**| The number of items to skip when paging through large result sets. | [optional]
|
8946
8940
|
**sort** | **String**| The field by which results should be sorted. By default, results are sorted in ascending order. To sort them in descending order, prefix the field name with `-`. **Note:** This parameter works only with numeric fields. | [optional]
|
8947
8941
|
**with_total_result_size** | **Boolean**| When this flag is set, the result includes the total size of the result, across all pages. This might decrease performance on large data sets. - When `true`: `hasMore` is true when there is a next page. `totalResultSize` is always zero. - When `false`: `hasMore` is always false. `totalResultSize` contains the total number of results for this query. | [optional]
|
8948
|
-
**campaign_id** | **Float**| Filter results by campaign. | [optional]
|
8942
|
+
**campaign_id** | **Float**| Filter results by campaign ID. | [optional]
|
8949
8943
|
**name** | **String**| The name of the store. | [optional]
|
8950
8944
|
**integration_id** | **String**| The integration ID of the store. | [optional]
|
8951
8945
|
**query** | **String**| Filter results by `name` or `integrationId`. | [optional]
|
8952
8946
|
|
8953
8947
|
### Return type
|
8954
8948
|
|
8955
|
-
[**
|
8949
|
+
[**InlineResponse20047**](InlineResponse20047.md)
|
8956
8950
|
|
8957
8951
|
### Authorization
|
8958
8952
|
|
@@ -9084,7 +9078,7 @@ nil (empty response body)
|
|
9084
9078
|
|
9085
9079
|
Create notification about added or deducted loyalty points
|
9086
9080
|
|
9087
|
-
Create a notification about added or deducted loyalty points in a given profile-based loyalty program. A notification for added or deducted loyalty points is different from regular webhooks in that it is loyalty program-scoped and has a predefined payload. For more information, see [
|
9081
|
+
Create a notification about added or deducted loyalty points in a given profile-based loyalty program. A notification for added or deducted loyalty points is different from regular webhooks in that it is loyalty program-scoped and has a predefined payload. For more information, see [Loyalty notifications](https://docs.talon.one/docs/product/loyalty-programs/loyalty-notifications/overview).
|
9088
9082
|
|
9089
9083
|
### Example
|
9090
9084
|
|
@@ -9145,7 +9139,7 @@ Name | Type | Description | Notes
|
|
9145
9139
|
|
9146
9140
|
Create strikethrough notification
|
9147
9141
|
|
9148
|
-
Create a notification for the in the given Application. For more information, see [
|
9142
|
+
Create a notification for the in the given Application. For more information, see [Application notifications](https://docs.talon.one/docs/product/applications/application-notifications/overview). See the [payload](https://docs.talon.one/outbound-notifications) you will receive.
|
9149
9143
|
|
9150
9144
|
### Example
|
9151
9145
|
|
@@ -9206,7 +9200,7 @@ Name | Type | Description | Notes
|
|
9206
9200
|
|
9207
9201
|
Create notification about pending loyalty points
|
9208
9202
|
|
9209
|
-
Create a notification about pending loyalty points for a given profile-based loyalty program. For more information, see [
|
9203
|
+
Create a notification about pending loyalty points for a given profile-based loyalty program. For more information, see [Loyalty notifications](https://docs.talon.one/docs/product/loyalty-programs/loyalty-notifications/overview).
|
9210
9204
|
|
9211
9205
|
### Example
|
9212
9206
|
|
@@ -9289,7 +9283,7 @@ end
|
|
9289
9283
|
|
9290
9284
|
api_instance = TalonOne::ManagementApi.new
|
9291
9285
|
loyalty_program_id = 'loyalty_program_id_example' # String | The identifier for the loyalty program.
|
9292
|
-
integration_id = 'integration_id_example' # String | The identifier
|
9286
|
+
integration_id = 'integration_id_example' # String | The integration identifier for this customer profile. Must be: - Unique within the deployment. - Stable for the customer. Do not use an ID that the customer can update themselves. For example, you can use a database ID. Once set, you cannot update this identifier.
|
9293
9287
|
body = TalonOne::DeductLoyaltyPoints.new # DeductLoyaltyPoints | body
|
9294
9288
|
|
9295
9289
|
begin
|
@@ -9306,7 +9300,7 @@ end
|
|
9306
9300
|
Name | Type | Description | Notes
|
9307
9301
|
------------- | ------------- | ------------- | -------------
|
9308
9302
|
**loyalty_program_id** | **String**| The identifier for the loyalty program. |
|
9309
|
-
**integration_id** | **String**| The identifier
|
9303
|
+
**integration_id** | **String**| The integration identifier for this customer profile. Must be: - Unique within the deployment. - Stable for the customer. Do not use an ID that the customer can update themselves. For example, you can use a database ID. Once set, you cannot update this identifier. |
|
9310
9304
|
**body** | [**DeductLoyaltyPoints**](DeductLoyaltyPoints.md)| body |
|
9311
9305
|
|
9312
9306
|
### Return type
|
@@ -9902,7 +9896,7 @@ Name | Type | Description | Notes
|
|
9902
9896
|
|
9903
9897
|
## search_coupons_advanced_application_wide_without_total_count
|
9904
9898
|
|
9905
|
-
>
|
9899
|
+
> InlineResponse20011 search_coupons_advanced_application_wide_without_total_count(application_id, body, opts)
|
9906
9900
|
|
9907
9901
|
List coupons that match the given attributes (without total count)
|
9908
9902
|
|
@@ -9939,9 +9933,9 @@ opts = {
|
|
9939
9933
|
valid: 'valid_example', # String | Either \"expired\", \"validNow\", or \"validFuture\". The first option matches coupons in which the expiration date is set and in the past. The second matches coupons in which start date is null or in the past and expiration date is null or in the future, the third matches coupons in which start date is set and in the future.
|
9940
9934
|
usable: 'usable_example', # String | Either \"true\" or \"false\". If \"true\", only coupons where `usageCounter < usageLimit` will be returned, \"false\" will return only coupons where `usageCounter >= usageLimit`.
|
9941
9935
|
referral_id: 56, # Integer | Filter the results by matching them with the ID of a referral. This filter shows the coupons created by redeeming a referral code.
|
9942
|
-
recipient_integration_id: 'recipient_integration_id_example', # String | Filter results by match with a profile
|
9936
|
+
recipient_integration_id: 'recipient_integration_id_example', # String | Filter results by match with a profile ID specified in the coupon's RecipientIntegrationId field.
|
9943
9937
|
batch_id: 'batch_id_example', # String | Filter results by batches of coupons
|
9944
|
-
exact_match: false, # Boolean | Filter results to an exact case-insensitive matching against the coupon code
|
9938
|
+
exact_match: false, # Boolean | Filter results to an exact case-insensitive matching against the coupon code.
|
9945
9939
|
campaign_state: 'campaign_state_example' # String | Filter results by the state of the campaign. - `enabled`: Campaigns that are scheduled, running (activated), or expired. - `running`: Campaigns that are running (activated). - `disabled`: Campaigns that are disabled. - `expired`: Campaigns that are expired. - `archived`: Campaigns that are archived.
|
9946
9940
|
}
|
9947
9941
|
|
@@ -9970,14 +9964,14 @@ Name | Type | Description | Notes
|
|
9970
9964
|
**valid** | **String**| Either \"expired\", \"validNow\", or \"validFuture\". The first option matches coupons in which the expiration date is set and in the past. The second matches coupons in which start date is null or in the past and expiration date is null or in the future, the third matches coupons in which start date is set and in the future. | [optional]
|
9971
9965
|
**usable** | **String**| Either \"true\" or \"false\". If \"true\", only coupons where `usageCounter < usageLimit` will be returned, \"false\" will return only coupons where `usageCounter >= usageLimit`. | [optional]
|
9972
9966
|
**referral_id** | **Integer**| Filter the results by matching them with the ID of a referral. This filter shows the coupons created by redeeming a referral code. | [optional]
|
9973
|
-
**recipient_integration_id** | **String**| Filter results by match with a profile
|
9967
|
+
**recipient_integration_id** | **String**| Filter results by match with a profile ID specified in the coupon's RecipientIntegrationId field. | [optional]
|
9974
9968
|
**batch_id** | **String**| Filter results by batches of coupons | [optional]
|
9975
|
-
**exact_match** | **Boolean**| Filter results to an exact case-insensitive matching against the coupon code | [optional] [default to false]
|
9969
|
+
**exact_match** | **Boolean**| Filter results to an exact case-insensitive matching against the coupon code. | [optional] [default to false]
|
9976
9970
|
**campaign_state** | **String**| Filter results by the state of the campaign. - `enabled`: Campaigns that are scheduled, running (activated), or expired. - `running`: Campaigns that are running (activated). - `disabled`: Campaigns that are disabled. - `expired`: Campaigns that are expired. - `archived`: Campaigns that are archived. | [optional]
|
9977
9971
|
|
9978
9972
|
### Return type
|
9979
9973
|
|
9980
|
-
[**
|
9974
|
+
[**InlineResponse20011**](InlineResponse20011.md)
|
9981
9975
|
|
9982
9976
|
### Authorization
|
9983
9977
|
|
@@ -9991,7 +9985,7 @@ Name | Type | Description | Notes
|
|
9991
9985
|
|
9992
9986
|
## search_coupons_advanced_without_total_count
|
9993
9987
|
|
9994
|
-
>
|
9988
|
+
> InlineResponse20011 search_coupons_advanced_without_total_count(application_id, campaign_id, body, opts)
|
9995
9989
|
|
9996
9990
|
List coupons that match the given attributes in campaign (without total count)
|
9997
9991
|
|
@@ -10029,8 +10023,8 @@ opts = {
|
|
10029
10023
|
valid: 'valid_example', # String | Either \"expired\", \"validNow\", or \"validFuture\". The first option matches coupons in which the expiration date is set and in the past. The second matches coupons in which start date is null or in the past and expiration date is null or in the future, the third matches coupons in which start date is set and in the future.
|
10030
10024
|
usable: 'usable_example', # String | Either \"true\" or \"false\". If \"true\", only coupons where `usageCounter < usageLimit` will be returned, \"false\" will return only coupons where `usageCounter >= usageLimit`.
|
10031
10025
|
referral_id: 56, # Integer | Filter the results by matching them with the ID of a referral. This filter shows the coupons created by redeeming a referral code.
|
10032
|
-
recipient_integration_id: 'recipient_integration_id_example', # String | Filter results by match with a profile
|
10033
|
-
exact_match: false, # Boolean | Filter results to an exact case-insensitive matching against the coupon code
|
10026
|
+
recipient_integration_id: 'recipient_integration_id_example', # String | Filter results by match with a profile ID specified in the coupon's RecipientIntegrationId field.
|
10027
|
+
exact_match: false, # Boolean | Filter results to an exact case-insensitive matching against the coupon code.
|
10034
10028
|
batch_id: 'batch_id_example' # String | Filter results by batches of coupons
|
10035
10029
|
}
|
10036
10030
|
|
@@ -10060,13 +10054,13 @@ Name | Type | Description | Notes
|
|
10060
10054
|
**valid** | **String**| Either \"expired\", \"validNow\", or \"validFuture\". The first option matches coupons in which the expiration date is set and in the past. The second matches coupons in which start date is null or in the past and expiration date is null or in the future, the third matches coupons in which start date is set and in the future. | [optional]
|
10061
10055
|
**usable** | **String**| Either \"true\" or \"false\". If \"true\", only coupons where `usageCounter < usageLimit` will be returned, \"false\" will return only coupons where `usageCounter >= usageLimit`. | [optional]
|
10062
10056
|
**referral_id** | **Integer**| Filter the results by matching them with the ID of a referral. This filter shows the coupons created by redeeming a referral code. | [optional]
|
10063
|
-
**recipient_integration_id** | **String**| Filter results by match with a profile
|
10064
|
-
**exact_match** | **Boolean**| Filter results to an exact case-insensitive matching against the coupon code | [optional] [default to false]
|
10057
|
+
**recipient_integration_id** | **String**| Filter results by match with a profile ID specified in the coupon's RecipientIntegrationId field. | [optional]
|
10058
|
+
**exact_match** | **Boolean**| Filter results to an exact case-insensitive matching against the coupon code. | [optional] [default to false]
|
10065
10059
|
**batch_id** | **String**| Filter results by batches of coupons | [optional]
|
10066
10060
|
|
10067
10061
|
### Return type
|
10068
10062
|
|
10069
|
-
[**
|
10063
|
+
[**InlineResponse20011**](InlineResponse20011.md)
|
10070
10064
|
|
10071
10065
|
### Authorization
|
10072
10066
|
|
@@ -10394,7 +10388,7 @@ Name | Type | Description | Notes
|
|
10394
10388
|
|
10395
10389
|
Update campaign
|
10396
10390
|
|
10397
|
-
Update the given campaign.
|
10391
|
+
Update the given campaign. **Important:** You cannot use this endpoint to update campaigns if [campaign staging and revisions](https://docs.talon.one/docs/product/applications/managing-general-settings#campaign-staging-and-revisions) is enabled for your Application.
|
10398
10392
|
|
10399
10393
|
### Example
|
10400
10394
|
|
@@ -10522,7 +10516,7 @@ Name | Type | Description | Notes
|
|
10522
10516
|
|
10523
10517
|
Update coupon
|
10524
10518
|
|
10525
|
-
Update the specified coupon. <div class=\"redoc-section\"> <p class=\"title\">Important</p> <p>With this <code>PUT</code> endpoint
|
10519
|
+
Update the specified coupon. <div class=\"redoc-section\"> <p class=\"title\">Important</p> <p>With this <code>PUT</code> endpoint, if you do not explicitly set a value for the <code>startDate</code>, <code>expiryDate</code>, and <code>recipientIntegrationId</code> properties in your request, it is automatically set to <code>null</code>.</p> </div>
|
10526
10520
|
|
10527
10521
|
### Example
|
10528
10522
|
|
@@ -10587,7 +10581,7 @@ Name | Type | Description | Notes
|
|
10587
10581
|
|
10588
10582
|
Update coupons
|
10589
10583
|
|
10590
|
-
Update all coupons
|
10584
|
+
Update all coupons or a specific batch of coupons in the given campaign. You can find the `batchId` on the **Coupons** page of your campaign in the Campaign Manager, or you can use [List coupons](#operation/getCouponsWithoutTotalCount). <div class=\"redoc-section\"> <p class=\"title\">Important</p> <ul> <li>Only send sequential requests to this endpoint.</li> <li>Requests to this endpoint time out after 30 minutes. If you hit a timeout, contact our support team.</li> <li>With this <code>PUT</code> endpoint, if you do not explicitly set a value for the <code>startDate</code> and <code>expiryDate</code> properties in your request, it is automatically set to <code>null</code>.</li> </ul> </div> To update a specific coupon, use [Update coupon](#operation/updateCoupon).
|
10591
10585
|
|
10592
10586
|
### Example
|
10593
10587
|
|