late-sdk 0.0.64 → 0.0.66

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 (37) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -0
  3. data/docs/AnalyticsApi.md +160 -0
  4. data/docs/GetInstagramAccountInsights404Response.md +18 -0
  5. data/docs/InstagramAccountInsightsResponse.md +32 -0
  6. data/docs/InstagramAccountInsightsResponseDateRange.md +20 -0
  7. data/docs/InstagramAccountInsightsResponseMetricsValue.md +22 -0
  8. data/docs/InstagramAccountInsightsResponseMetricsValueBreakdownsInner.md +20 -0
  9. data/docs/InstagramAccountInsightsResponseMetricsValueValuesInner.md +20 -0
  10. data/docs/InstagramDemographicsResponse.md +30 -0
  11. data/docs/InstagramDemographicsResponseDemographicsValueInner.md +20 -0
  12. data/docs/TikTokPlatformData.md +1 -1
  13. data/lib/late-sdk/api/analytics_api.rb +164 -0
  14. data/lib/late-sdk/models/get_instagram_account_insights404_response.rb +147 -0
  15. data/lib/late-sdk/models/instagram_account_insights_response.rb +249 -0
  16. data/lib/late-sdk/models/instagram_account_insights_response_date_range.rb +156 -0
  17. data/lib/late-sdk/models/instagram_account_insights_response_metrics_value.rb +172 -0
  18. data/lib/late-sdk/models/instagram_account_insights_response_metrics_value_breakdowns_inner.rb +156 -0
  19. data/lib/late-sdk/models/instagram_account_insights_response_metrics_value_values_inner.rb +156 -0
  20. data/lib/late-sdk/models/instagram_demographics_response.rb +252 -0
  21. data/lib/late-sdk/models/instagram_demographics_response_demographics_value_inner.rb +158 -0
  22. data/lib/late-sdk/models/tik_tok_platform_data.rb +1 -1
  23. data/lib/late-sdk/version.rb +1 -1
  24. data/lib/late-sdk.rb +8 -0
  25. data/openapi.yaml +363 -1
  26. data/spec/api/analytics_api_spec.rb +32 -0
  27. data/spec/models/get_instagram_account_insights404_response_spec.rb +36 -0
  28. data/spec/models/instagram_account_insights_response_date_range_spec.rb +42 -0
  29. data/spec/models/instagram_account_insights_response_metrics_value_breakdowns_inner_spec.rb +42 -0
  30. data/spec/models/instagram_account_insights_response_metrics_value_spec.rb +48 -0
  31. data/spec/models/instagram_account_insights_response_metrics_value_values_inner_spec.rb +42 -0
  32. data/spec/models/instagram_account_insights_response_spec.rb +82 -0
  33. data/spec/models/instagram_demographics_response_demographics_value_inner_spec.rb +42 -0
  34. data/spec/models/instagram_demographics_response_spec.rb +80 -0
  35. data/zernio-sdk-0.0.66.gem +0 -0
  36. metadata +35 -3
  37. data/zernio-sdk-0.0.64.gem +0 -0
@@ -0,0 +1,82 @@
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::InstagramAccountInsightsResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::InstagramAccountInsightsResponse do
21
+ #let(:instance) { Late::InstagramAccountInsightsResponse.new }
22
+
23
+ describe 'test an instance of InstagramAccountInsightsResponse' do
24
+ it 'should create an instance of InstagramAccountInsightsResponse' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::InstagramAccountInsightsResponse)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "success"' 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 "account_id"' 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 "platform"' 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 "date_range"' 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
+ describe 'test attribute "metric_type"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["time_series", "total_value"])
58
+ # validator.allowable_values.each do |value|
59
+ # expect { instance.metric_type = value }.not_to raise_error
60
+ # end
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "breakdown"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "metrics"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "data_delay"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
79
+ end
80
+ end
81
+
82
+ 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::InstagramDemographicsResponseDemographicsValueInner
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::InstagramDemographicsResponseDemographicsValueInner do
21
+ #let(:instance) { Late::InstagramDemographicsResponseDemographicsValueInner.new }
22
+
23
+ describe 'test an instance of InstagramDemographicsResponseDemographicsValueInner' do
24
+ it 'should create an instance of InstagramDemographicsResponseDemographicsValueInner' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::InstagramDemographicsResponseDemographicsValueInner)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "dimension"' 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 "value"' 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,80 @@
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::InstagramDemographicsResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::InstagramDemographicsResponse do
21
+ #let(:instance) { Late::InstagramDemographicsResponse.new }
22
+
23
+ describe 'test an instance of InstagramDemographicsResponse' do
24
+ it 'should create an instance of InstagramDemographicsResponse' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::InstagramDemographicsResponse)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "success"' 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 "account_id"' 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 "platform"' 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 "metric"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["follower_demographics", "engaged_audience_demographics"])
52
+ # validator.allowable_values.each do |value|
53
+ # expect { instance.metric = value }.not_to raise_error
54
+ # end
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "timeframe"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
61
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["this_week", "this_month"])
62
+ # validator.allowable_values.each do |value|
63
+ # expect { instance.timeframe = value }.not_to raise_error
64
+ # end
65
+ end
66
+ end
67
+
68
+ describe 'test attribute "demographics"' do
69
+ it 'should work' do
70
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
71
+ end
72
+ end
73
+
74
+ describe 'test attribute "note"' do
75
+ it 'should work' do
76
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
77
+ end
78
+ end
79
+
80
+ end
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: late-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.64
4
+ version: 0.0.66
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-21 00:00:00.000000000 Z
11
+ date: 2026-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -250,6 +250,7 @@ files:
250
250
  - docs/GetInboxPostComments200ResponseCommentsInnerFrom.md
251
251
  - docs/GetInboxPostComments200ResponseMeta.md
252
252
  - docs/GetInboxPostComments200ResponsePagination.md
253
+ - docs/GetInstagramAccountInsights404Response.md
253
254
  - docs/GetLinkedInAggregateAnalytics200Response.md
254
255
  - docs/GetLinkedInAggregateAnalytics400Response.md
255
256
  - docs/GetLinkedInAggregateAnalytics402Response.md
@@ -351,6 +352,13 @@ files:
351
352
  - docs/InitiateTelegramConnectRequest.md
352
353
  - docs/InlineObject.md
353
354
  - docs/InlineObject1.md
355
+ - docs/InstagramAccountInsightsResponse.md
356
+ - docs/InstagramAccountInsightsResponseDateRange.md
357
+ - docs/InstagramAccountInsightsResponseMetricsValue.md
358
+ - docs/InstagramAccountInsightsResponseMetricsValueBreakdownsInner.md
359
+ - docs/InstagramAccountInsightsResponseMetricsValueValuesInner.md
360
+ - docs/InstagramDemographicsResponse.md
361
+ - docs/InstagramDemographicsResponseDemographicsValueInner.md
354
362
  - docs/InstagramPlatformData.md
355
363
  - docs/InstagramPlatformDataTrialParams.md
356
364
  - docs/InstagramPlatformDataUserTagsInner.md
@@ -867,6 +875,7 @@ files:
867
875
  - lib/late-sdk/models/get_inbox_post_comments200_response_comments_inner_from.rb
868
876
  - lib/late-sdk/models/get_inbox_post_comments200_response_meta.rb
869
877
  - lib/late-sdk/models/get_inbox_post_comments200_response_pagination.rb
878
+ - lib/late-sdk/models/get_instagram_account_insights404_response.rb
870
879
  - lib/late-sdk/models/get_linked_in_aggregate_analytics200_response.rb
871
880
  - lib/late-sdk/models/get_linked_in_aggregate_analytics400_response.rb
872
881
  - lib/late-sdk/models/get_linked_in_aggregate_analytics402_response.rb
@@ -968,6 +977,13 @@ files:
968
977
  - lib/late-sdk/models/initiate_telegram_connect_request.rb
969
978
  - lib/late-sdk/models/inline_object.rb
970
979
  - lib/late-sdk/models/inline_object1.rb
980
+ - lib/late-sdk/models/instagram_account_insights_response.rb
981
+ - lib/late-sdk/models/instagram_account_insights_response_date_range.rb
982
+ - lib/late-sdk/models/instagram_account_insights_response_metrics_value.rb
983
+ - lib/late-sdk/models/instagram_account_insights_response_metrics_value_breakdowns_inner.rb
984
+ - lib/late-sdk/models/instagram_account_insights_response_metrics_value_values_inner.rb
985
+ - lib/late-sdk/models/instagram_demographics_response.rb
986
+ - lib/late-sdk/models/instagram_demographics_response_demographics_value_inner.rb
971
987
  - lib/late-sdk/models/instagram_platform_data.rb
972
988
  - lib/late-sdk/models/instagram_platform_data_trial_params.rb
973
989
  - lib/late-sdk/models/instagram_platform_data_user_tags_inner.rb
@@ -1462,6 +1478,7 @@ files:
1462
1478
  - spec/models/get_inbox_post_comments200_response_meta_spec.rb
1463
1479
  - spec/models/get_inbox_post_comments200_response_pagination_spec.rb
1464
1480
  - spec/models/get_inbox_post_comments200_response_spec.rb
1481
+ - spec/models/get_instagram_account_insights404_response_spec.rb
1465
1482
  - spec/models/get_linked_in_aggregate_analytics200_response_spec.rb
1466
1483
  - spec/models/get_linked_in_aggregate_analytics400_response_spec.rb
1467
1484
  - spec/models/get_linked_in_aggregate_analytics402_response_spec.rb
@@ -1563,6 +1580,13 @@ files:
1563
1580
  - spec/models/initiate_telegram_connect_request_spec.rb
1564
1581
  - spec/models/inline_object1_spec.rb
1565
1582
  - spec/models/inline_object_spec.rb
1583
+ - spec/models/instagram_account_insights_response_date_range_spec.rb
1584
+ - spec/models/instagram_account_insights_response_metrics_value_breakdowns_inner_spec.rb
1585
+ - spec/models/instagram_account_insights_response_metrics_value_spec.rb
1586
+ - spec/models/instagram_account_insights_response_metrics_value_values_inner_spec.rb
1587
+ - spec/models/instagram_account_insights_response_spec.rb
1588
+ - spec/models/instagram_demographics_response_demographics_value_inner_spec.rb
1589
+ - spec/models/instagram_demographics_response_spec.rb
1566
1590
  - spec/models/instagram_platform_data_spec.rb
1567
1591
  - spec/models/instagram_platform_data_trial_params_spec.rb
1568
1592
  - spec/models/instagram_platform_data_user_tags_inner_spec.rb
@@ -1849,7 +1873,7 @@ files:
1849
1873
  - spec/models/you_tube_scope_missing_response_scope_status_spec.rb
1850
1874
  - spec/models/you_tube_scope_missing_response_spec.rb
1851
1875
  - spec/spec_helper.rb
1852
- - zernio-sdk-0.0.64.gem
1876
+ - zernio-sdk-0.0.66.gem
1853
1877
  homepage: https://openapi-generator.tech
1854
1878
  licenses:
1855
1879
  - Unlicense
@@ -1983,6 +2007,7 @@ test_files:
1983
2007
  - spec/models/get_whats_app_broadcast_recipients200_response_summary_spec.rb
1984
2008
  - spec/models/get_telegram_commands200_response_spec.rb
1985
2009
  - spec/models/select_facebook_page200_response_spec.rb
2010
+ - spec/models/instagram_demographics_response_spec.rb
1986
2011
  - spec/models/initiate_telegram_connect200_response_spec.rb
1987
2012
  - spec/models/get_linked_in_post_reactions400_response_spec.rb
1988
2013
  - spec/models/get_google_business_food_menus200_response_spec.rb
@@ -2089,6 +2114,7 @@ test_files:
2089
2114
  - spec/models/update_google_business_attributes200_response_spec.rb
2090
2115
  - spec/models/get_google_business_location_details200_response_service_items_inner_price_spec.rb
2091
2116
  - spec/models/get_whats_app_contacts200_response_spec.rb
2117
+ - spec/models/instagram_account_insights_response_metrics_value_breakdowns_inner_spec.rb
2092
2118
  - spec/models/update_account_group_request_spec.rb
2093
2119
  - spec/models/linked_in_aggregate_analytics_daily_response_analytics_spec.rb
2094
2120
  - spec/models/get_linked_in_aggregate_analytics200_response_spec.rb
@@ -2249,6 +2275,7 @@ test_files:
2249
2275
  - spec/models/linked_in_aggregate_analytics_daily_response_analytics_impressions_inner_spec.rb
2250
2276
  - spec/models/send_private_reply_to_comment_request_spec.rb
2251
2277
  - spec/models/select_snapchat_profile_request_spec.rb
2278
+ - spec/models/get_instagram_account_insights404_response_spec.rb
2252
2279
  - spec/models/social_account_profile_id_spec.rb
2253
2280
  - spec/models/create_post429_response_spec.rb
2254
2281
  - spec/models/list_inbox_comments200_response_data_inner_spec.rb
@@ -2317,6 +2344,7 @@ test_files:
2317
2344
  - spec/models/get_media_presigned_url_request_spec.rb
2318
2345
  - spec/models/get_account_health200_response_token_status_spec.rb
2319
2346
  - spec/models/get_you_tube_transcript200_response_segments_inner_spec.rb
2347
+ - spec/models/instagram_account_insights_response_metrics_value_spec.rb
2320
2348
  - spec/models/get_inbox_post_comments200_response_meta_spec.rb
2321
2349
  - spec/models/get_whats_app_phone_number200_response_spec.rb
2322
2350
  - spec/models/list_inbox_conversations200_response_meta_spec.rb
@@ -2338,6 +2366,7 @@ test_files:
2338
2366
  - spec/models/send_inbox_message_request_buttons_inner_spec.rb
2339
2367
  - spec/models/follower_stats_response_spec.rb
2340
2368
  - spec/models/connected_spec.rb
2369
+ - spec/models/instagram_account_insights_response_spec.rb
2341
2370
  - spec/models/account_get_response_spec.rb
2342
2371
  - spec/models/update_whats_app_display_name_request_spec.rb
2343
2372
  - spec/models/reply_to_inbox_review_request_spec.rb
@@ -2383,10 +2412,12 @@ test_files:
2383
2412
  - spec/models/get_whats_app_broadcast200_response_broadcast_spec.rb
2384
2413
  - spec/models/edit_inbox_message_request_reply_markup_spec.rb
2385
2414
  - spec/models/import_whats_app_contacts200_response_spec.rb
2415
+ - spec/models/instagram_account_insights_response_date_range_spec.rb
2386
2416
  - spec/models/check_instagram_hashtags200_response_results_inner_spec.rb
2387
2417
  - spec/models/select_pinterest_board200_response_spec.rb
2388
2418
  - spec/models/reply_to_inbox_post200_response_spec.rb
2389
2419
  - spec/models/create_whats_app_broadcast200_response_spec.rb
2420
+ - spec/models/instagram_account_insights_response_metrics_value_values_inner_spec.rb
2390
2421
  - spec/models/platform_analytics_spec.rb
2391
2422
  - spec/models/reply_to_inbox_post_request_spec.rb
2392
2423
  - spec/models/remove_whats_app_broadcast_recipients200_response_spec.rb
@@ -2400,6 +2431,7 @@ test_files:
2400
2431
  - spec/models/download_tik_tok_video200_response_formats_inner_spec.rb
2401
2432
  - spec/models/undo_retweet200_response_spec.rb
2402
2433
  - spec/models/retweet_post_request_spec.rb
2434
+ - spec/models/instagram_demographics_response_demographics_value_inner_spec.rb
2403
2435
  - spec/models/create_whats_app_broadcast200_response_broadcast_spec.rb
2404
2436
  - spec/models/media_upload_response_spec.rb
2405
2437
  - spec/models/select_linked_in_organization200_response_bulk_refresh_spec.rb
Binary file