late-sdk 0.0.63 → 0.0.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -0
  3. data/docs/AccountsApi.md +74 -0
  4. data/docs/GetTikTokCreatorInfo200Response.md +24 -0
  5. data/docs/GetTikTokCreatorInfo200ResponseCommercialContentTypesInner.md +22 -0
  6. data/docs/GetTikTokCreatorInfo200ResponseCreator.md +24 -0
  7. data/docs/GetTikTokCreatorInfo200ResponsePostingLimits.md +20 -0
  8. data/docs/GetTikTokCreatorInfo200ResponsePrivacyLevelsInner.md +20 -0
  9. data/docs/TikTokPlatformData.md +3 -1
  10. data/lib/late-sdk/api/accounts_api.rb +70 -0
  11. data/lib/late-sdk/models/get_tik_tok_creator_info200_response.rb +180 -0
  12. data/lib/late-sdk/models/get_tik_tok_creator_info200_response_commercial_content_types_inner.rb +167 -0
  13. data/lib/late-sdk/models/get_tik_tok_creator_info200_response_creator.rb +178 -0
  14. data/lib/late-sdk/models/get_tik_tok_creator_info200_response_posting_limits.rb +158 -0
  15. data/lib/late-sdk/models/get_tik_tok_creator_info200_response_privacy_levels_inner.rb +158 -0
  16. data/lib/late-sdk/models/tik_tok_platform_data.rb +12 -2
  17. data/lib/late-sdk/version.rb +1 -1
  18. data/lib/late-sdk.rb +5 -0
  19. data/openapi.yaml +113 -1
  20. data/spec/api/accounts_api_spec.rb +13 -0
  21. data/spec/models/get_tik_tok_creator_info200_response_commercial_content_types_inner_spec.rb +48 -0
  22. data/spec/models/get_tik_tok_creator_info200_response_creator_spec.rb +54 -0
  23. data/spec/models/get_tik_tok_creator_info200_response_posting_limits_spec.rb +42 -0
  24. data/spec/models/get_tik_tok_creator_info200_response_privacy_levels_inner_spec.rb +42 -0
  25. data/spec/models/get_tik_tok_creator_info200_response_spec.rb +54 -0
  26. data/spec/models/tik_tok_platform_data_spec.rb +6 -0
  27. data/zernio-sdk-0.0.64.gem +0 -0
  28. metadata +22 -2
  29. data/zernio-sdk-0.0.63.gem +0 -0
data/openapi.yaml CHANGED
@@ -1485,8 +1485,12 @@ components:
1485
1485
  description: Optional override. Defaults based on provided media items.
1486
1486
  videoCoverTimestampMs:
1487
1487
  type: integer
1488
- description: Optional for video posts. Timestamp in milliseconds to select which frame to use as thumbnail (defaults to 1000ms/1 second).
1488
+ description: Optional for video posts. Timestamp in milliseconds to select which frame to use as thumbnail (defaults to 1000ms/1 second). Ignored when videoCoverImageUrl is provided.
1489
1489
  minimum: 0
1490
+ videoCoverImageUrl:
1491
+ type: string
1492
+ format: uri
1493
+ description: Optional for video posts. URL of a custom thumbnail image (JPG, PNG, or WebP, max 20MB). The image is prepended as a 1-second still frame to the video and used as the cover. Overrides videoCoverTimestampMs when provided.
1490
1494
  photoCoverIndex:
1491
1495
  type: integer
1492
1496
  description: Optional for photo carousels. Index of image to use as cover, 0-based (defaults to 0/first image).
@@ -5584,6 +5588,114 @@ paths:
5584
5588
  recommendations: []
5585
5589
  '401': { $ref: '#/components/responses/Unauthorized' }
5586
5590
  '404': { $ref: '#/components/responses/NotFound' }
5591
+ /v1/accounts/{accountId}/tiktok/creator-info:
5592
+ get:
5593
+ operationId: getTikTokCreatorInfo
5594
+ tags: [Accounts]
5595
+ summary: Get TikTok creator info
5596
+ description: Returns TikTok creator details, available privacy levels, posting limits, and commercial content options for a specific TikTok account. Only works with TikTok accounts.
5597
+ parameters:
5598
+ - name: accountId
5599
+ in: path
5600
+ required: true
5601
+ schema: { type: string }
5602
+ description: The TikTok account ID
5603
+ - name: mediaType
5604
+ in: query
5605
+ required: false
5606
+ schema:
5607
+ type: string
5608
+ enum: [video, photo]
5609
+ default: video
5610
+ description: The media type to get creator info for (affects available interaction settings)
5611
+ responses:
5612
+ '200':
5613
+ description: TikTok creator info and posting options
5614
+ content:
5615
+ application/json:
5616
+ schema:
5617
+ type: object
5618
+ properties:
5619
+ creator:
5620
+ type: object
5621
+ properties:
5622
+ nickname: { type: string, description: Creator display name }
5623
+ avatarUrl: { type: string, description: Creator avatar URL }
5624
+ isVerified: { type: boolean, description: Whether the creator is verified }
5625
+ canPostMore: { type: boolean, description: Whether the creator can publish more posts right now }
5626
+ privacyLevels:
5627
+ type: array
5628
+ description: Available privacy level options for this creator
5629
+ items:
5630
+ type: object
5631
+ properties:
5632
+ value: { type: string, description: "Privacy level value to use when creating posts (e.g. PUBLIC_TO_EVERYONE, MUTUAL_FOLLOW_FRIENDS, FOLLOWER_OF_CREATOR, SELF_ONLY)" }
5633
+ label: { type: string, description: Human-readable label }
5634
+ postingLimits:
5635
+ type: object
5636
+ properties:
5637
+ maxVideoDurationSec: { type: integer, description: Maximum video duration in seconds }
5638
+ interactionSettings:
5639
+ type: object
5640
+ description: Available interaction toggles (comment, duet, stitch) and their defaults
5641
+ commercialContentTypes:
5642
+ type: array
5643
+ description: Available commercial content disclosure options
5644
+ items:
5645
+ type: object
5646
+ properties:
5647
+ value: { type: string }
5648
+ label: { type: string }
5649
+ requires:
5650
+ type: array
5651
+ items: { type: string }
5652
+ example:
5653
+ creator:
5654
+ nickname: "myaccount"
5655
+ avatarUrl: "https://example.com/avatar.jpg"
5656
+ isVerified: false
5657
+ canPostMore: true
5658
+ privacyLevels:
5659
+ - value: "PUBLIC_TO_EVERYONE"
5660
+ label: "Public To Everyone"
5661
+ - value: "MUTUAL_FOLLOW_FRIENDS"
5662
+ label: "Mutual Follow Friends"
5663
+ - value: "SELF_ONLY"
5664
+ label: "Self Only"
5665
+ postingLimits:
5666
+ maxVideoDurationSec: 600
5667
+ interactionSettings:
5668
+ comment: true
5669
+ duet: true
5670
+ stitch: true
5671
+ commercialContentTypes:
5672
+ - value: "none"
5673
+ label: "No Commercial Content"
5674
+ - value: "brand_organic"
5675
+ label: "Your Brand"
5676
+ requires: ["is_brand_organic_post"]
5677
+ '400':
5678
+ description: Account is not a TikTok account
5679
+ content:
5680
+ application/json:
5681
+ schema:
5682
+ type: object
5683
+ properties:
5684
+ error: { type: string }
5685
+ example:
5686
+ error: "This endpoint is only available for TikTok accounts"
5687
+ '401': { $ref: '#/components/responses/Unauthorized' }
5688
+ '404': { $ref: '#/components/responses/NotFound' }
5689
+ '429':
5690
+ description: Creator has reached TikTok daily posting limit
5691
+ content:
5692
+ application/json:
5693
+ schema:
5694
+ type: object
5695
+ properties:
5696
+ error: { type: string }
5697
+ example:
5698
+ error: "TikTok creator has reached the daily posting limit. Please try again later."
5587
5699
  /v1/api-keys:
5588
5700
  get:
5589
5701
  operationId: listApiKeys
@@ -86,6 +86,19 @@ describe 'AccountsApi' do
86
86
  end
87
87
  end
88
88
 
89
+ # unit tests for get_tik_tok_creator_info
90
+ # Get TikTok creator info
91
+ # Returns TikTok creator details, available privacy levels, posting limits, and commercial content options for a specific TikTok account. Only works with TikTok accounts.
92
+ # @param account_id The TikTok account ID
93
+ # @param [Hash] opts the optional parameters
94
+ # @option opts [String] :media_type The media type to get creator info for (affects available interaction settings)
95
+ # @return [GetTikTokCreatorInfo200Response]
96
+ describe 'get_tik_tok_creator_info test' do
97
+ it 'should work' do
98
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
99
+ end
100
+ end
101
+
89
102
  # unit tests for list_accounts
90
103
  # List accounts
91
104
  # Returns connected social accounts. Only includes accounts within the plan limit by default. Follower data requires analytics add-on.
@@ -0,0 +1,48 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::GetTikTokCreatorInfo200ResponseCommercialContentTypesInner
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::GetTikTokCreatorInfo200ResponseCommercialContentTypesInner do
21
+ #let(:instance) { Late::GetTikTokCreatorInfo200ResponseCommercialContentTypesInner.new }
22
+
23
+ describe 'test an instance of GetTikTokCreatorInfo200ResponseCommercialContentTypesInner' do
24
+ it 'should create an instance of GetTikTokCreatorInfo200ResponseCommercialContentTypesInner' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::GetTikTokCreatorInfo200ResponseCommercialContentTypesInner)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "value"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "label"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "requires"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::GetTikTokCreatorInfo200ResponseCreator
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::GetTikTokCreatorInfo200ResponseCreator do
21
+ #let(:instance) { Late::GetTikTokCreatorInfo200ResponseCreator.new }
22
+
23
+ describe 'test an instance of GetTikTokCreatorInfo200ResponseCreator' do
24
+ it 'should create an instance of GetTikTokCreatorInfo200ResponseCreator' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::GetTikTokCreatorInfo200ResponseCreator)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "nickname"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "avatar_url"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "is_verified"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "can_post_more"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::GetTikTokCreatorInfo200ResponsePostingLimits
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::GetTikTokCreatorInfo200ResponsePostingLimits do
21
+ #let(:instance) { Late::GetTikTokCreatorInfo200ResponsePostingLimits.new }
22
+
23
+ describe 'test an instance of GetTikTokCreatorInfo200ResponsePostingLimits' do
24
+ it 'should create an instance of GetTikTokCreatorInfo200ResponsePostingLimits' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::GetTikTokCreatorInfo200ResponsePostingLimits)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "max_video_duration_sec"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "interaction_settings"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ end
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::GetTikTokCreatorInfo200ResponsePrivacyLevelsInner
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::GetTikTokCreatorInfo200ResponsePrivacyLevelsInner do
21
+ #let(:instance) { Late::GetTikTokCreatorInfo200ResponsePrivacyLevelsInner.new }
22
+
23
+ describe 'test an instance of GetTikTokCreatorInfo200ResponsePrivacyLevelsInner' do
24
+ it 'should create an instance of GetTikTokCreatorInfo200ResponsePrivacyLevelsInner' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::GetTikTokCreatorInfo200ResponsePrivacyLevelsInner)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "value"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "label"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::GetTikTokCreatorInfo200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::GetTikTokCreatorInfo200Response do
21
+ #let(:instance) { Late::GetTikTokCreatorInfo200Response.new }
22
+
23
+ describe 'test an instance of GetTikTokCreatorInfo200Response' do
24
+ it 'should create an instance of GetTikTokCreatorInfo200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::GetTikTokCreatorInfo200Response)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "creator"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "privacy_levels"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "posting_limits"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "commercial_content_types"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ end
@@ -107,6 +107,12 @@ describe Late::TikTokPlatformData do
107
107
  end
108
108
  end
109
109
 
110
+ describe 'test attribute "video_cover_image_url"' do
111
+ it 'should work' do
112
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
113
+ end
114
+ end
115
+
110
116
  describe 'test attribute "photo_cover_index"' do
111
117
  it 'should work' do
112
118
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: late-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.63
4
+ version: 0.0.64
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -291,6 +291,11 @@ files:
291
291
  - docs/GetTelegramCommands200Response.md
292
292
  - docs/GetTelegramCommands200ResponseDataInner.md
293
293
  - docs/GetTelegramConnectStatus200Response.md
294
+ - docs/GetTikTokCreatorInfo200Response.md
295
+ - docs/GetTikTokCreatorInfo200ResponseCommercialContentTypesInner.md
296
+ - docs/GetTikTokCreatorInfo200ResponseCreator.md
297
+ - docs/GetTikTokCreatorInfo200ResponsePostingLimits.md
298
+ - docs/GetTikTokCreatorInfo200ResponsePrivacyLevelsInner.md
294
299
  - docs/GetUser200Response.md
295
300
  - docs/GetUser200ResponseUser.md
296
301
  - docs/GetWebhookLogs200Response.md
@@ -903,6 +908,11 @@ files:
903
908
  - lib/late-sdk/models/get_telegram_commands200_response.rb
904
909
  - lib/late-sdk/models/get_telegram_commands200_response_data_inner.rb
905
910
  - lib/late-sdk/models/get_telegram_connect_status200_response.rb
911
+ - lib/late-sdk/models/get_tik_tok_creator_info200_response.rb
912
+ - lib/late-sdk/models/get_tik_tok_creator_info200_response_commercial_content_types_inner.rb
913
+ - lib/late-sdk/models/get_tik_tok_creator_info200_response_creator.rb
914
+ - lib/late-sdk/models/get_tik_tok_creator_info200_response_posting_limits.rb
915
+ - lib/late-sdk/models/get_tik_tok_creator_info200_response_privacy_levels_inner.rb
906
916
  - lib/late-sdk/models/get_user200_response.rb
907
917
  - lib/late-sdk/models/get_user200_response_user.rb
908
918
  - lib/late-sdk/models/get_webhook_logs200_response.rb
@@ -1493,6 +1503,11 @@ files:
1493
1503
  - spec/models/get_telegram_commands200_response_data_inner_spec.rb
1494
1504
  - spec/models/get_telegram_commands200_response_spec.rb
1495
1505
  - spec/models/get_telegram_connect_status200_response_spec.rb
1506
+ - spec/models/get_tik_tok_creator_info200_response_commercial_content_types_inner_spec.rb
1507
+ - spec/models/get_tik_tok_creator_info200_response_creator_spec.rb
1508
+ - spec/models/get_tik_tok_creator_info200_response_posting_limits_spec.rb
1509
+ - spec/models/get_tik_tok_creator_info200_response_privacy_levels_inner_spec.rb
1510
+ - spec/models/get_tik_tok_creator_info200_response_spec.rb
1496
1511
  - spec/models/get_user200_response_spec.rb
1497
1512
  - spec/models/get_user200_response_user_spec.rb
1498
1513
  - spec/models/get_webhook_logs200_response_spec.rb
@@ -1834,7 +1849,7 @@ files:
1834
1849
  - spec/models/you_tube_scope_missing_response_scope_status_spec.rb
1835
1850
  - spec/models/you_tube_scope_missing_response_spec.rb
1836
1851
  - spec/spec_helper.rb
1837
- - zernio-sdk-0.0.63.gem
1852
+ - zernio-sdk-0.0.64.gem
1838
1853
  homepage: https://openapi-generator.tech
1839
1854
  licenses:
1840
1855
  - Unlicense
@@ -1899,6 +1914,7 @@ test_files:
1899
1914
  - spec/models/get_google_business_location_details200_response_service_items_inner_free_form_service_item_spec.rb
1900
1915
  - spec/models/get_google_business_location_details200_response_regular_hours_spec.rb
1901
1916
  - spec/models/schedule_whats_app_broadcast200_response_spec.rb
1917
+ - spec/models/get_tik_tok_creator_info200_response_commercial_content_types_inner_spec.rb
1902
1918
  - spec/models/get_linked_in_mentions200_response_spec.rb
1903
1919
  - spec/models/search_reddit200_response_spec.rb
1904
1920
  - spec/models/accounts_list_response_spec.rb
@@ -1906,6 +1922,7 @@ test_files:
1906
1922
  - spec/models/validate_subreddit200_response_one_of_spec.rb
1907
1923
  - spec/models/get_reddit_subreddits200_response_spec.rb
1908
1924
  - spec/models/initiate_telegram_connect200_response_account_spec.rb
1925
+ - spec/models/get_tik_tok_creator_info200_response_creator_spec.rb
1909
1926
  - spec/models/get_account_health200_response_permissions_spec.rb
1910
1927
  - spec/models/download_you_tube_video200_response_spec.rb
1911
1928
  - spec/models/api_key_spec.rb
@@ -2209,6 +2226,7 @@ test_files:
2209
2226
  - spec/models/send_inbox_message_request_template_elements_inner_spec.rb
2210
2227
  - spec/models/get_linked_in_post_reactions200_response_pagination_spec.rb
2211
2228
  - spec/models/list_snapchat_profiles200_response_public_profiles_inner_spec.rb
2229
+ - spec/models/get_tik_tok_creator_info200_response_posting_limits_spec.rb
2212
2230
  - spec/models/unfollow_user200_response_spec.rb
2213
2231
  - spec/models/get_gmb_locations200_response_locations_inner_spec.rb
2214
2232
  - spec/models/update_queue_slot_request_spec.rb
@@ -2295,6 +2313,7 @@ test_files:
2295
2313
  - spec/models/send_whats_app_bulk200_response_results_inner_spec.rb
2296
2314
  - spec/models/webhook_payload_message_message_spec.rb
2297
2315
  - spec/models/update_reddit_subreddits_request_spec.rb
2316
+ - spec/models/get_tik_tok_creator_info200_response_privacy_levels_inner_spec.rb
2298
2317
  - spec/models/get_media_presigned_url_request_spec.rb
2299
2318
  - spec/models/get_account_health200_response_token_status_spec.rb
2300
2319
  - spec/models/get_you_tube_transcript200_response_segments_inner_spec.rb
@@ -2445,4 +2464,5 @@ test_files:
2445
2464
  - spec/models/queue_delete_response_spec.rb
2446
2465
  - spec/models/you_tube_daily_views_response_scope_status_spec.rb
2447
2466
  - spec/models/list_queue_slots200_response_spec.rb
2467
+ - spec/models/get_tik_tok_creator_info200_response_spec.rb
2448
2468
  - spec/spec_helper.rb
Binary file