braze_api_client 0.1.0 → 0.1.1
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/README.md +3 -3
- data/braze_api_client.gemspec +1 -1
- data/docs/RestApi.md +26 -26
- data/docs/UsersAliasNewResponse.md +20 -0
- data/docs/{IdentifierOneOf.md → UsersDeleteResponse.md} +4 -4
- data/docs/UsersExternalIdsRemoveResponse.md +22 -0
- data/docs/UsersExternalIdsRenameResponse.md +22 -0
- data/docs/UsersExternalIdsRenameResponseExternalIds.md +20 -0
- data/docs/UsersIdentifyResponse.md +20 -0
- data/lib/braze_api_client/api/rest_api.rb +25 -25
- data/lib/braze_api_client/api_client.rb +2 -2
- data/lib/braze_api_client/api_error.rb +1 -1
- data/lib/braze_api_client/configuration.rb +1 -1
- data/lib/braze_api_client/models/general_error.rb +1 -1
- data/lib/braze_api_client/models/{attributes_array.rb → users_alias_new_response.rb} +20 -18
- data/lib/braze_api_client/models/{events_array.rb → users_delete_response.rb} +11 -13
- data/lib/braze_api_client/models/{users_track_request.rb → users_external_ids_remove_response.rb} +32 -37
- data/lib/braze_api_client/models/{attributes_push_tokens.rb → users_external_ids_rename_response.rb} +27 -33
- data/lib/braze_api_client/models/{attributes_facebook.rb → users_external_ids_rename_response_external_ids.rb} +17 -28
- data/lib/braze_api_client/models/{attributes_current_location.rb → users_identify_response.rb} +17 -17
- data/lib/braze_api_client/models/users_track_response.rb +1 -1
- data/lib/braze_api_client/version.rb +2 -2
- data/lib/braze_api_client.rb +7 -14
- data/spec/api/rest_api_spec.rb +7 -7
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/general_error_spec.rb +1 -1
- data/spec/models/{attributes_current_location_spec.rb → users_alias_new_response_spec.rb} +9 -9
- data/spec/models/{identifier_one_of2_spec.rb → users_delete_response_spec.rb} +8 -8
- data/spec/models/{attributes_facebook_spec.rb → users_external_ids_remove_response_spec.rb} +10 -10
- data/spec/models/users_external_ids_rename_response_external_ids_spec.rb +40 -0
- data/spec/models/{attributes_push_tokens_spec.rb → users_external_ids_rename_response_spec.rb} +10 -10
- data/spec/models/users_identify_response_spec.rb +40 -0
- data/spec/models/users_track_response_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +26 -54
- data/docs/Attributes.md +0 -58
- data/docs/AttributesArray.md +0 -18
- data/docs/AttributesCurrentLocation.md +0 -20
- data/docs/AttributesFacebook.md +0 -22
- data/docs/AttributesPushTokens.md +0 -22
- data/docs/AttributesTwitter.md +0 -26
- data/docs/Event.md +0 -26
- data/docs/EventsArray.md +0 -18
- data/docs/Identifier.md +0 -51
- data/docs/IdentifierOneOf1.md +0 -18
- data/docs/IdentifierOneOf2.md +0 -18
- data/docs/UsersTrackRequest.md +0 -18
- data/lib/braze_api_client/models/attributes.rb +0 -458
- data/lib/braze_api_client/models/attributes_twitter.rb +0 -254
- data/lib/braze_api_client/models/event.rb +0 -264
- data/lib/braze_api_client/models/identifier.rb +0 -106
- data/lib/braze_api_client/models/identifier_one_of.rb +0 -223
- data/lib/braze_api_client/models/identifier_one_of1.rb +0 -223
- data/lib/braze_api_client/models/identifier_one_of2.rb +0 -223
- data/spec/models/attributes_array_spec.rb +0 -34
- data/spec/models/attributes_spec.rb +0 -166
- data/spec/models/attributes_twitter_spec.rb +0 -58
- data/spec/models/event_spec.rb +0 -58
- data/spec/models/events_array_spec.rb +0 -34
- data/spec/models/identifier_one_of1_spec.rb +0 -34
- data/spec/models/identifier_one_of_spec.rb +0 -34
- data/spec/models/identifier_spec.rb +0 -31
- data/spec/models/users_track_request_spec.rb +0 -34
data/lib/braze_api_client.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Track users, send messages, export data, and more
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 0.1.
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 5.2.1
|
@@ -17,20 +17,13 @@ require 'braze_api_client/version'
|
|
17
17
|
require 'braze_api_client/configuration'
|
18
18
|
|
19
19
|
# Models
|
20
|
-
require 'braze_api_client/models/attributes'
|
21
|
-
require 'braze_api_client/models/attributes_array'
|
22
|
-
require 'braze_api_client/models/attributes_current_location'
|
23
|
-
require 'braze_api_client/models/attributes_facebook'
|
24
|
-
require 'braze_api_client/models/attributes_push_tokens'
|
25
|
-
require 'braze_api_client/models/attributes_twitter'
|
26
|
-
require 'braze_api_client/models/event'
|
27
|
-
require 'braze_api_client/models/events_array'
|
28
20
|
require 'braze_api_client/models/general_error'
|
29
|
-
require 'braze_api_client/models/
|
30
|
-
require 'braze_api_client/models/
|
31
|
-
require 'braze_api_client/models/
|
32
|
-
require 'braze_api_client/models/
|
33
|
-
require 'braze_api_client/models/
|
21
|
+
require 'braze_api_client/models/users_alias_new_response'
|
22
|
+
require 'braze_api_client/models/users_delete_response'
|
23
|
+
require 'braze_api_client/models/users_external_ids_remove_response'
|
24
|
+
require 'braze_api_client/models/users_external_ids_rename_response'
|
25
|
+
require 'braze_api_client/models/users_external_ids_rename_response_external_ids'
|
26
|
+
require 'braze_api_client/models/users_identify_response'
|
34
27
|
require 'braze_api_client/models/users_track_response'
|
35
28
|
|
36
29
|
# APIs
|
data/spec/api/rest_api_spec.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Track users, send messages, export data, and more
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 0.1.
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 5.2.1
|
@@ -36,7 +36,7 @@ describe 'RestApi' do
|
|
36
36
|
# Delete any user profile by specifying a known user identifier
|
37
37
|
# @param body
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
|
-
# @return [
|
39
|
+
# @return [UsersDeleteResponse]
|
40
40
|
describe 'delete_users test' do
|
41
41
|
it 'should work' do
|
42
42
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -47,7 +47,7 @@ describe 'RestApi' do
|
|
47
47
|
# Identify an unidentified (alias-only) user
|
48
48
|
# @param body
|
49
49
|
# @param [Hash] opts the optional parameters
|
50
|
-
# @return [
|
50
|
+
# @return [UsersIdentifyResponse]
|
51
51
|
describe 'identify_users test' do
|
52
52
|
it 'should work' do
|
53
53
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -58,7 +58,7 @@ describe 'RestApi' do
|
|
58
58
|
# Add new user aliases for existing identified users or create new unidentified users
|
59
59
|
# @param body
|
60
60
|
# @param [Hash] opts the optional parameters
|
61
|
-
# @return [
|
61
|
+
# @return [UsersAliasNewResponse]
|
62
62
|
describe 'new_user_aliases test' do
|
63
63
|
it 'should work' do
|
64
64
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -69,7 +69,7 @@ describe 'RestApi' do
|
|
69
69
|
# Remove your users' old deprecated external IDs. This endpoint completely removes the deprecated ID and cannot be undone.
|
70
70
|
# @param body
|
71
71
|
# @param [Hash] opts the optional parameters
|
72
|
-
# @return [
|
72
|
+
# @return [UsersExternalIdsRemoveResponse]
|
73
73
|
describe 'remove_external_ids test' do
|
74
74
|
it 'should work' do
|
75
75
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -80,7 +80,7 @@ describe 'RestApi' do
|
|
80
80
|
# Set a new (primary) external_id for the user and deprecate their existing external_id
|
81
81
|
# @param body
|
82
82
|
# @param [Hash] opts the optional parameters
|
83
|
-
# @return [
|
83
|
+
# @return [UsersExternalIdsRenameResponse]
|
84
84
|
describe 'rename_external_ids test' do
|
85
85
|
it 'should work' do
|
86
86
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -89,7 +89,7 @@ describe 'RestApi' do
|
|
89
89
|
|
90
90
|
# unit tests for track_users
|
91
91
|
# Record custom events, purchases, and update user profile attributes
|
92
|
-
# @param
|
92
|
+
# @param body
|
93
93
|
# @param [Hash] opts the optional parameters
|
94
94
|
# @return [UsersTrackResponse]
|
95
95
|
describe 'track_users test' do
|
data/spec/api_client_spec.rb
CHANGED
data/spec/configuration_spec.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Track users, send messages, export data, and more
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 0.1.
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 5.2.1
|
@@ -14,24 +14,24 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for BrazeClient::
|
17
|
+
# Unit tests for BrazeClient::UsersAliasNewResponse
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe BrazeClient::
|
21
|
-
let(:instance) { BrazeClient::
|
20
|
+
describe BrazeClient::UsersAliasNewResponse do
|
21
|
+
let(:instance) { BrazeClient::UsersAliasNewResponse.new }
|
22
22
|
|
23
|
-
describe 'test an instance of
|
24
|
-
it 'should create an instance of
|
25
|
-
expect(instance).to be_instance_of(BrazeClient::
|
23
|
+
describe 'test an instance of UsersAliasNewResponse' do
|
24
|
+
it 'should create an instance of UsersAliasNewResponse' do
|
25
|
+
expect(instance).to be_instance_of(BrazeClient::UsersAliasNewResponse)
|
26
26
|
end
|
27
27
|
end
|
28
|
-
describe 'test attribute "
|
28
|
+
describe 'test attribute "aliases_processed"' do
|
29
29
|
it 'should work' do
|
30
30
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
31
|
end
|
32
32
|
end
|
33
33
|
|
34
|
-
describe 'test attribute "
|
34
|
+
describe 'test attribute "message"' do
|
35
35
|
it 'should work' do
|
36
36
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
37
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Track users, send messages, export data, and more
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 0.1.
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 5.2.1
|
@@ -14,18 +14,18 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for BrazeClient::
|
17
|
+
# Unit tests for BrazeClient::UsersDeleteResponse
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe BrazeClient::
|
21
|
-
let(:instance) { BrazeClient::
|
20
|
+
describe BrazeClient::UsersDeleteResponse do
|
21
|
+
let(:instance) { BrazeClient::UsersDeleteResponse.new }
|
22
22
|
|
23
|
-
describe 'test an instance of
|
24
|
-
it 'should create an instance of
|
25
|
-
expect(instance).to be_instance_of(BrazeClient::
|
23
|
+
describe 'test an instance of UsersDeleteResponse' do
|
24
|
+
it 'should create an instance of UsersDeleteResponse' do
|
25
|
+
expect(instance).to be_instance_of(BrazeClient::UsersDeleteResponse)
|
26
26
|
end
|
27
27
|
end
|
28
|
-
describe 'test attribute "
|
28
|
+
describe 'test attribute "deleted"' do
|
29
29
|
it 'should work' do
|
30
30
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
31
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Track users, send messages, export data, and more
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 0.1.
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 5.2.1
|
@@ -14,30 +14,30 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for BrazeClient::
|
17
|
+
# Unit tests for BrazeClient::UsersExternalIdsRemoveResponse
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe BrazeClient::
|
21
|
-
let(:instance) { BrazeClient::
|
20
|
+
describe BrazeClient::UsersExternalIdsRemoveResponse do
|
21
|
+
let(:instance) { BrazeClient::UsersExternalIdsRemoveResponse.new }
|
22
22
|
|
23
|
-
describe 'test an instance of
|
24
|
-
it 'should create an instance of
|
25
|
-
expect(instance).to be_instance_of(BrazeClient::
|
23
|
+
describe 'test an instance of UsersExternalIdsRemoveResponse' do
|
24
|
+
it 'should create an instance of UsersExternalIdsRemoveResponse' do
|
25
|
+
expect(instance).to be_instance_of(BrazeClient::UsersExternalIdsRemoveResponse)
|
26
26
|
end
|
27
27
|
end
|
28
|
-
describe 'test attribute "
|
28
|
+
describe 'test attribute "message"' do
|
29
29
|
it 'should work' do
|
30
30
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
31
|
end
|
32
32
|
end
|
33
33
|
|
34
|
-
describe 'test attribute "
|
34
|
+
describe 'test attribute "removal_errors"' do
|
35
35
|
it 'should work' do
|
36
36
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
40
|
-
describe 'test attribute "
|
40
|
+
describe 'test attribute "removed_ids"' do
|
41
41
|
it 'should work' do
|
42
42
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
43
|
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
=begin
|
2
|
+
#Braze
|
3
|
+
|
4
|
+
#Track users, send messages, export data, and more
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.2.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for BrazeClient::UsersExternalIdsRenameResponseExternalIds
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe BrazeClient::UsersExternalIdsRenameResponseExternalIds do
|
21
|
+
let(:instance) { BrazeClient::UsersExternalIdsRenameResponseExternalIds.new }
|
22
|
+
|
23
|
+
describe 'test an instance of UsersExternalIdsRenameResponseExternalIds' do
|
24
|
+
it 'should create an instance of UsersExternalIdsRenameResponseExternalIds' do
|
25
|
+
expect(instance).to be_instance_of(BrazeClient::UsersExternalIdsRenameResponseExternalIds)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "current_external_id"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "new_external_id"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
data/spec/models/{attributes_push_tokens_spec.rb → users_external_ids_rename_response_spec.rb}
RENAMED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Track users, send messages, export data, and more
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 0.1.
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 5.2.1
|
@@ -14,30 +14,30 @@ require 'spec_helper'
|
|
14
14
|
require 'json'
|
15
15
|
require 'date'
|
16
16
|
|
17
|
-
# Unit tests for BrazeClient::
|
17
|
+
# Unit tests for BrazeClient::UsersExternalIdsRenameResponse
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
19
|
# Please update as you see appropriate
|
20
|
-
describe BrazeClient::
|
21
|
-
let(:instance) { BrazeClient::
|
20
|
+
describe BrazeClient::UsersExternalIdsRenameResponse do
|
21
|
+
let(:instance) { BrazeClient::UsersExternalIdsRenameResponse.new }
|
22
22
|
|
23
|
-
describe 'test an instance of
|
24
|
-
it 'should create an instance of
|
25
|
-
expect(instance).to be_instance_of(BrazeClient::
|
23
|
+
describe 'test an instance of UsersExternalIdsRenameResponse' do
|
24
|
+
it 'should create an instance of UsersExternalIdsRenameResponse' do
|
25
|
+
expect(instance).to be_instance_of(BrazeClient::UsersExternalIdsRenameResponse)
|
26
26
|
end
|
27
27
|
end
|
28
|
-
describe 'test attribute "
|
28
|
+
describe 'test attribute "message"' do
|
29
29
|
it 'should work' do
|
30
30
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
31
|
end
|
32
32
|
end
|
33
33
|
|
34
|
-
describe 'test attribute "
|
34
|
+
describe 'test attribute "rename_errors"' do
|
35
35
|
it 'should work' do
|
36
36
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
40
|
-
describe 'test attribute "
|
40
|
+
describe 'test attribute "external_ids"' do
|
41
41
|
it 'should work' do
|
42
42
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
43
|
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
=begin
|
2
|
+
#Braze
|
3
|
+
|
4
|
+
#Track users, send messages, export data, and more
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1.1
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.2.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for BrazeClient::UsersIdentifyResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe BrazeClient::UsersIdentifyResponse do
|
21
|
+
let(:instance) { BrazeClient::UsersIdentifyResponse.new }
|
22
|
+
|
23
|
+
describe 'test an instance of UsersIdentifyResponse' do
|
24
|
+
it 'should create an instance of UsersIdentifyResponse' do
|
25
|
+
expect(instance).to be_instance_of(BrazeClient::UsersIdentifyResponse)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "message"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "aliases_processed"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: braze_api_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01-
|
11
|
+
date: 2022-01-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -62,21 +62,14 @@ files:
|
|
62
62
|
- README.md
|
63
63
|
- Rakefile
|
64
64
|
- braze_api_client.gemspec
|
65
|
-
- docs/Attributes.md
|
66
|
-
- docs/AttributesArray.md
|
67
|
-
- docs/AttributesCurrentLocation.md
|
68
|
-
- docs/AttributesFacebook.md
|
69
|
-
- docs/AttributesPushTokens.md
|
70
|
-
- docs/AttributesTwitter.md
|
71
|
-
- docs/Event.md
|
72
|
-
- docs/EventsArray.md
|
73
65
|
- docs/GeneralError.md
|
74
|
-
- docs/Identifier.md
|
75
|
-
- docs/IdentifierOneOf.md
|
76
|
-
- docs/IdentifierOneOf1.md
|
77
|
-
- docs/IdentifierOneOf2.md
|
78
66
|
- docs/RestApi.md
|
79
|
-
- docs/
|
67
|
+
- docs/UsersAliasNewResponse.md
|
68
|
+
- docs/UsersDeleteResponse.md
|
69
|
+
- docs/UsersExternalIdsRemoveResponse.md
|
70
|
+
- docs/UsersExternalIdsRenameResponse.md
|
71
|
+
- docs/UsersExternalIdsRenameResponseExternalIds.md
|
72
|
+
- docs/UsersIdentifyResponse.md
|
80
73
|
- docs/UsersTrackResponse.md
|
81
74
|
- git_push.sh
|
82
75
|
- lib/braze_api_client.rb
|
@@ -84,39 +77,25 @@ files:
|
|
84
77
|
- lib/braze_api_client/api_client.rb
|
85
78
|
- lib/braze_api_client/api_error.rb
|
86
79
|
- lib/braze_api_client/configuration.rb
|
87
|
-
- lib/braze_api_client/models/attributes.rb
|
88
|
-
- lib/braze_api_client/models/attributes_array.rb
|
89
|
-
- lib/braze_api_client/models/attributes_current_location.rb
|
90
|
-
- lib/braze_api_client/models/attributes_facebook.rb
|
91
|
-
- lib/braze_api_client/models/attributes_push_tokens.rb
|
92
|
-
- lib/braze_api_client/models/attributes_twitter.rb
|
93
|
-
- lib/braze_api_client/models/event.rb
|
94
|
-
- lib/braze_api_client/models/events_array.rb
|
95
80
|
- lib/braze_api_client/models/general_error.rb
|
96
|
-
- lib/braze_api_client/models/
|
97
|
-
- lib/braze_api_client/models/
|
98
|
-
- lib/braze_api_client/models/
|
99
|
-
- lib/braze_api_client/models/
|
100
|
-
- lib/braze_api_client/models/
|
81
|
+
- lib/braze_api_client/models/users_alias_new_response.rb
|
82
|
+
- lib/braze_api_client/models/users_delete_response.rb
|
83
|
+
- lib/braze_api_client/models/users_external_ids_remove_response.rb
|
84
|
+
- lib/braze_api_client/models/users_external_ids_rename_response.rb
|
85
|
+
- lib/braze_api_client/models/users_external_ids_rename_response_external_ids.rb
|
86
|
+
- lib/braze_api_client/models/users_identify_response.rb
|
101
87
|
- lib/braze_api_client/models/users_track_response.rb
|
102
88
|
- lib/braze_api_client/version.rb
|
103
89
|
- spec/api/rest_api_spec.rb
|
104
90
|
- spec/api_client_spec.rb
|
105
91
|
- spec/configuration_spec.rb
|
106
|
-
- spec/models/attributes_array_spec.rb
|
107
|
-
- spec/models/attributes_current_location_spec.rb
|
108
|
-
- spec/models/attributes_facebook_spec.rb
|
109
|
-
- spec/models/attributes_push_tokens_spec.rb
|
110
|
-
- spec/models/attributes_spec.rb
|
111
|
-
- spec/models/attributes_twitter_spec.rb
|
112
|
-
- spec/models/event_spec.rb
|
113
|
-
- spec/models/events_array_spec.rb
|
114
92
|
- spec/models/general_error_spec.rb
|
115
|
-
- spec/models/
|
116
|
-
- spec/models/
|
117
|
-
- spec/models/
|
118
|
-
- spec/models/
|
119
|
-
- spec/models/
|
93
|
+
- spec/models/users_alias_new_response_spec.rb
|
94
|
+
- spec/models/users_delete_response_spec.rb
|
95
|
+
- spec/models/users_external_ids_remove_response_spec.rb
|
96
|
+
- spec/models/users_external_ids_rename_response_external_ids_spec.rb
|
97
|
+
- spec/models/users_external_ids_rename_response_spec.rb
|
98
|
+
- spec/models/users_identify_response_spec.rb
|
120
99
|
- spec/models/users_track_response_spec.rb
|
121
100
|
- spec/spec_helper.rb
|
122
101
|
homepage: https://openapi-generator.tech
|
@@ -146,19 +125,12 @@ test_files:
|
|
146
125
|
- spec/api/rest_api_spec.rb
|
147
126
|
- spec/api_client_spec.rb
|
148
127
|
- spec/configuration_spec.rb
|
149
|
-
- spec/models/
|
128
|
+
- spec/models/users_alias_new_response_spec.rb
|
150
129
|
- spec/models/users_track_response_spec.rb
|
151
|
-
- spec/models/
|
152
|
-
- spec/models/
|
153
|
-
- spec/models/
|
154
|
-
- spec/models/
|
155
|
-
- spec/models/
|
156
|
-
- spec/models/attributes_facebook_spec.rb
|
130
|
+
- spec/models/users_external_ids_rename_response_spec.rb
|
131
|
+
- spec/models/users_external_ids_remove_response_spec.rb
|
132
|
+
- spec/models/users_delete_response_spec.rb
|
133
|
+
- spec/models/users_identify_response_spec.rb
|
134
|
+
- spec/models/users_external_ids_rename_response_external_ids_spec.rb
|
157
135
|
- spec/models/general_error_spec.rb
|
158
|
-
- spec/models/attributes_twitter_spec.rb
|
159
|
-
- spec/models/event_spec.rb
|
160
|
-
- spec/models/events_array_spec.rb
|
161
|
-
- spec/models/users_track_request_spec.rb
|
162
|
-
- spec/models/attributes_array_spec.rb
|
163
|
-
- spec/models/identifier_one_of_spec.rb
|
164
136
|
- spec/spec_helper.rb
|
data/docs/Attributes.md
DELETED
@@ -1,58 +0,0 @@
|
|
1
|
-
# BrazeClient::Attributes
|
2
|
-
|
3
|
-
## Properties
|
4
|
-
|
5
|
-
| Name | Type | Description | Notes |
|
6
|
-
| ---- | ---- | ----------- | ----- |
|
7
|
-
| **country** | **String** | | [optional] |
|
8
|
-
| **current_location** | [**AttributesCurrentLocation**](AttributesCurrentLocation.md) | | [optional] |
|
9
|
-
| **date_of_first_session** | **Time** | | [optional] |
|
10
|
-
| **date_of_last_session** | **Time** | | [optional] |
|
11
|
-
| **dob** | **Date** | | [optional] |
|
12
|
-
| **email** | **String** | | [optional] |
|
13
|
-
| **email_subscribe** | **String** | | [optional] |
|
14
|
-
| **email_open_tracking_disabled** | **Boolean** | | [optional] |
|
15
|
-
| **email_click_tracking_disabled** | **Boolean** | | [optional] |
|
16
|
-
| **facebook** | [**AttributesFacebook**](AttributesFacebook.md) | | [optional] |
|
17
|
-
| **first_name** | **String** | | [optional] |
|
18
|
-
| **gender** | **String** | | [optional] |
|
19
|
-
| **home_city** | **String** | | [optional] |
|
20
|
-
| **language** | **String** | | [optional] |
|
21
|
-
| **last_name** | **String** | | [optional] |
|
22
|
-
| **marked_email_as_spam_at** | **Time** | | [optional] |
|
23
|
-
| **phone** | **String** | | [optional] |
|
24
|
-
| **push_subscribe** | **String** | | [optional] |
|
25
|
-
| **push_tokens** | [**Array<AttributesPushTokens>**](AttributesPushTokens.md) | | [optional] |
|
26
|
-
| **time_zone** | **String** | | [optional] |
|
27
|
-
| **twitter** | [**AttributesTwitter**](AttributesTwitter.md) | | [optional] |
|
28
|
-
|
29
|
-
## Example
|
30
|
-
|
31
|
-
```ruby
|
32
|
-
require 'braze_api_client'
|
33
|
-
|
34
|
-
instance = BrazeClient::Attributes.new(
|
35
|
-
country: null,
|
36
|
-
current_location: null,
|
37
|
-
date_of_first_session: null,
|
38
|
-
date_of_last_session: null,
|
39
|
-
dob: null,
|
40
|
-
email: null,
|
41
|
-
email_subscribe: null,
|
42
|
-
email_open_tracking_disabled: null,
|
43
|
-
email_click_tracking_disabled: null,
|
44
|
-
facebook: null,
|
45
|
-
first_name: null,
|
46
|
-
gender: null,
|
47
|
-
home_city: null,
|
48
|
-
language: null,
|
49
|
-
last_name: null,
|
50
|
-
marked_email_as_spam_at: null,
|
51
|
-
phone: null,
|
52
|
-
push_subscribe: null,
|
53
|
-
push_tokens: null,
|
54
|
-
time_zone: null,
|
55
|
-
twitter: null
|
56
|
-
)
|
57
|
-
```
|
58
|
-
|
data/docs/AttributesArray.md
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
# BrazeClient::AttributesArray
|
2
|
-
|
3
|
-
## Properties
|
4
|
-
|
5
|
-
| Name | Type | Description | Notes |
|
6
|
-
| ---- | ---- | ----------- | ----- |
|
7
|
-
| **attributes** | [**Array<Attributes>**](Attributes.md) | | |
|
8
|
-
|
9
|
-
## Example
|
10
|
-
|
11
|
-
```ruby
|
12
|
-
require 'braze_api_client'
|
13
|
-
|
14
|
-
instance = BrazeClient::AttributesArray.new(
|
15
|
-
attributes: null
|
16
|
-
)
|
17
|
-
```
|
18
|
-
|
@@ -1,20 +0,0 @@
|
|
1
|
-
# BrazeClient::AttributesCurrentLocation
|
2
|
-
|
3
|
-
## Properties
|
4
|
-
|
5
|
-
| Name | Type | Description | Notes |
|
6
|
-
| ---- | ---- | ----------- | ----- |
|
7
|
-
| **latitude** | **Float** | | [optional] |
|
8
|
-
| **longitude** | **Float** | | [optional] |
|
9
|
-
|
10
|
-
## Example
|
11
|
-
|
12
|
-
```ruby
|
13
|
-
require 'braze_api_client'
|
14
|
-
|
15
|
-
instance = BrazeClient::AttributesCurrentLocation.new(
|
16
|
-
latitude: null,
|
17
|
-
longitude: null
|
18
|
-
)
|
19
|
-
```
|
20
|
-
|
data/docs/AttributesFacebook.md
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
# BrazeClient::AttributesFacebook
|
2
|
-
|
3
|
-
## Properties
|
4
|
-
|
5
|
-
| Name | Type | Description | Notes |
|
6
|
-
| ---- | ---- | ----------- | ----- |
|
7
|
-
| **id** | **String** | | [optional] |
|
8
|
-
| **likes** | **Array<String>** | | [optional] |
|
9
|
-
| **num_friends** | **Integer** | | [optional] |
|
10
|
-
|
11
|
-
## Example
|
12
|
-
|
13
|
-
```ruby
|
14
|
-
require 'braze_api_client'
|
15
|
-
|
16
|
-
instance = BrazeClient::AttributesFacebook.new(
|
17
|
-
id: null,
|
18
|
-
likes: null,
|
19
|
-
num_friends: null
|
20
|
-
)
|
21
|
-
```
|
22
|
-
|