zernio-sdk 0.0.547 → 0.0.549
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 +5 -0
- data/docs/AccountWithFollowerStats.md +1 -1
- data/docs/CreateWhatsAppTemplateRequest.md +1 -1
- data/docs/PurchasePhoneNumberRequest.md +2 -0
- data/docs/SocialAccount.md +1 -1
- data/docs/WhatsAppCarouselCardComponent.md +82 -0
- data/docs/WhatsAppCarouselComponent.md +20 -0
- data/docs/WhatsAppCarouselComponentCardsInner.md +18 -0
- data/docs/WhatsAppLimitedTimeOfferComponent.md +20 -0
- data/docs/WhatsAppLimitedTimeOfferComponentLimitedTimeOffer.md +20 -0
- data/docs/WhatsAppTemplateComponent.md +8 -2
- data/lib/zernio-sdk/models/account_with_follower_stats.rb +1 -1
- data/lib/zernio-sdk/models/create_whats_app_template_request.rb +1 -1
- data/lib/zernio-sdk/models/purchase_phone_number_request.rb +13 -1
- data/lib/zernio-sdk/models/social_account.rb +1 -1
- data/lib/zernio-sdk/models/whats_app_carousel_card_component.rb +57 -0
- data/lib/zernio-sdk/models/whats_app_carousel_component.rb +235 -0
- data/lib/zernio-sdk/models/whats_app_carousel_component_cards_inner.rb +176 -0
- data/lib/zernio-sdk/models/whats_app_limited_time_offer_component.rb +214 -0
- data/lib/zernio-sdk/models/whats_app_limited_time_offer_component_limited_time_offer.rb +193 -0
- data/lib/zernio-sdk/models/whats_app_template_component.rb +6 -2
- data/lib/zernio-sdk/version.rb +1 -1
- data/lib/zernio-sdk.rb +5 -0
- data/openapi.yaml +70 -2
- data/spec/models/purchase_phone_number_request_spec.rb +6 -0
- data/spec/models/whats_app_carousel_card_component_spec.rb +44 -0
- data/spec/models/whats_app_carousel_component_cards_inner_spec.rb +36 -0
- data/spec/models/whats_app_carousel_component_spec.rb +46 -0
- data/spec/models/whats_app_limited_time_offer_component_limited_time_offer_spec.rb +42 -0
- data/spec/models/whats_app_limited_time_offer_component_spec.rb +46 -0
- metadata +21 -1
data/openapi.yaml
CHANGED
|
@@ -1375,6 +1375,8 @@ components:
|
|
|
1375
1375
|
- $ref: '#/components/schemas/WhatsAppBodyComponent'
|
|
1376
1376
|
- $ref: '#/components/schemas/WhatsAppFooterComponent'
|
|
1377
1377
|
- $ref: '#/components/schemas/WhatsAppButtonsComponent'
|
|
1378
|
+
- $ref: '#/components/schemas/WhatsAppCarouselComponent'
|
|
1379
|
+
- $ref: '#/components/schemas/WhatsAppLimitedTimeOfferComponent'
|
|
1378
1380
|
discriminator:
|
|
1379
1381
|
propertyName: type
|
|
1380
1382
|
mapping:
|
|
@@ -1382,6 +1384,8 @@ components:
|
|
|
1382
1384
|
body: '#/components/schemas/WhatsAppBodyComponent'
|
|
1383
1385
|
footer: '#/components/schemas/WhatsAppFooterComponent'
|
|
1384
1386
|
buttons: '#/components/schemas/WhatsAppButtonsComponent'
|
|
1387
|
+
carousel: '#/components/schemas/WhatsAppCarouselComponent'
|
|
1388
|
+
limited_time_offer: '#/components/schemas/WhatsAppLimitedTimeOfferComponent'
|
|
1385
1389
|
WhatsAppHeaderComponent:
|
|
1386
1390
|
type: object
|
|
1387
1391
|
required: [type, format]
|
|
@@ -1458,6 +1462,58 @@ components:
|
|
|
1458
1462
|
minItems: 1
|
|
1459
1463
|
items:
|
|
1460
1464
|
$ref: '#/components/schemas/WhatsAppTemplateButton'
|
|
1465
|
+
WhatsAppCarouselComponent:
|
|
1466
|
+
type: object
|
|
1467
|
+
required: [type, cards]
|
|
1468
|
+
properties:
|
|
1469
|
+
type:
|
|
1470
|
+
type: string
|
|
1471
|
+
enum: [carousel]
|
|
1472
|
+
cards:
|
|
1473
|
+
type: array
|
|
1474
|
+
minItems: 2
|
|
1475
|
+
maxItems: 10
|
|
1476
|
+
description: '2-10 cards. Meta requires all cards to share the same component structure; a mismatch surfaces as a rejected_reason. MARKETING category only.'
|
|
1477
|
+
items:
|
|
1478
|
+
type: object
|
|
1479
|
+
required: [components]
|
|
1480
|
+
properties:
|
|
1481
|
+
components:
|
|
1482
|
+
type: array
|
|
1483
|
+
minItems: 1
|
|
1484
|
+
description: 'Per-card components. Each card carries its own media header + optional body + up to 2 buttons. Footer and nested carousel are not allowed inside cards.'
|
|
1485
|
+
items:
|
|
1486
|
+
$ref: '#/components/schemas/WhatsAppCarouselCardComponent'
|
|
1487
|
+
WhatsAppCarouselCardComponent:
|
|
1488
|
+
oneOf:
|
|
1489
|
+
- $ref: '#/components/schemas/WhatsAppHeaderComponent'
|
|
1490
|
+
- $ref: '#/components/schemas/WhatsAppBodyComponent'
|
|
1491
|
+
- $ref: '#/components/schemas/WhatsAppButtonsComponent'
|
|
1492
|
+
discriminator:
|
|
1493
|
+
propertyName: type
|
|
1494
|
+
mapping:
|
|
1495
|
+
header: '#/components/schemas/WhatsAppHeaderComponent'
|
|
1496
|
+
body: '#/components/schemas/WhatsAppBodyComponent'
|
|
1497
|
+
buttons: '#/components/schemas/WhatsAppButtonsComponent'
|
|
1498
|
+
WhatsAppLimitedTimeOfferComponent:
|
|
1499
|
+
type: object
|
|
1500
|
+
required: [type, limited_time_offer]
|
|
1501
|
+
properties:
|
|
1502
|
+
type:
|
|
1503
|
+
type: string
|
|
1504
|
+
enum: [limited_time_offer]
|
|
1505
|
+
limited_time_offer:
|
|
1506
|
+
type: object
|
|
1507
|
+
required: [text]
|
|
1508
|
+
properties:
|
|
1509
|
+
text:
|
|
1510
|
+
type: string
|
|
1511
|
+
minLength: 1
|
|
1512
|
+
maxLength: 16
|
|
1513
|
+
description: 'Short offer label (<=16 chars). MARKETING only.'
|
|
1514
|
+
has_expiration:
|
|
1515
|
+
type: boolean
|
|
1516
|
+
description: 'Toggles the countdown timer. The actual coupon code + expiry are bound at SEND time, not here.'
|
|
1461
1517
|
WhatsAppSandboxSession:
|
|
1462
1518
|
type: object
|
|
1463
1519
|
description: |
|
|
@@ -5333,7 +5389,7 @@ components:
|
|
|
5333
5389
|
description: |
|
|
5334
5390
|
Platform-specific metadata. Fields vary by platform. For WhatsApp accounts, includes:
|
|
5335
5391
|
- qualityRating: Phone number quality rating from Meta (GREEN, YELLOW, RED, or UNKNOWN)
|
|
5336
|
-
- nameStatus: Display name review status (APPROVED, PENDING_REVIEW, DECLINED, or NONE).
|
|
5392
|
+
- nameStatus: Display name review status (APPROVED, PENDING_REVIEW, DECLINED, or NONE). A declined or pending display name does not by itself block sending; sendability is reported separately via health_status (can_send_message).
|
|
5337
5393
|
- messagingLimitTier: Maximum unique business-initiated conversations per 24h rolling window (TIER_250, TIER_1K, TIER_10K, TIER_100K, or TIER_UNLIMITED). Scales automatically as quality rating improves.
|
|
5338
5394
|
- verifiedName: Meta-verified business display name
|
|
5339
5395
|
- displayPhoneNumber: Formatted phone number (e.g., "+1 555-123-4567")
|
|
@@ -24765,7 +24821,7 @@ paths:
|
|
|
24765
24821
|
description: Template language code (e.g., en_US)
|
|
24766
24822
|
components:
|
|
24767
24823
|
type: array
|
|
24768
|
-
description: "Template components (header, body, footer, buttons). Required for custom templates, omit when using library_template_name."
|
|
24824
|
+
description: "Template components (header, body, footer, buttons, carousel, limited_time_offer). Required for custom templates, omit when using library_template_name."
|
|
24769
24825
|
minItems: 1
|
|
24770
24826
|
items:
|
|
24771
24827
|
$ref: '#/components/schemas/WhatsAppTemplateComponent'
|
|
@@ -27672,6 +27728,18 @@ paths:
|
|
|
27672
27728
|
can actually text (see also GET /v1/phone-numbers/available
|
|
27673
27729
|
with sms=true, and smsAvailable on GET
|
|
27674
27730
|
/v1/phone-numbers/countries).
|
|
27731
|
+
wantsWhatsapp:
|
|
27732
|
+
type: boolean
|
|
27733
|
+
default: false
|
|
27734
|
+
description: >
|
|
27735
|
+
Declare WhatsApp intent on a STANDALONE purchase
|
|
27736
|
+
(connectWhatsapp:false). The number still activates and
|
|
27737
|
+
bills immediately, but if WhatsApp's buy-time check rejects
|
|
27738
|
+
the assigned number, it is automatically swapped for a
|
|
27739
|
+
WhatsApp-eligible one during the purchase instead of being
|
|
27740
|
+
delivered with WhatsApp unavailable. Ignored on the WhatsApp
|
|
27741
|
+
provisioning path (connectWhatsapp omitted or true), which
|
|
27742
|
+
always delivers a WhatsApp-verified number.
|
|
27675
27743
|
purchaseIntentId:
|
|
27676
27744
|
type: string
|
|
27677
27745
|
maxLength: 100
|
|
@@ -61,6 +61,12 @@ describe Zernio::PurchasePhoneNumberRequest do
|
|
|
61
61
|
end
|
|
62
62
|
end
|
|
63
63
|
|
|
64
|
+
describe 'test attribute "wants_whatsapp"' 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
|
+
|
|
64
70
|
describe 'test attribute "purchase_intent_id"' do
|
|
65
71
|
it 'should work' do
|
|
66
72
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -0,0 +1,44 @@
|
|
|
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.4
|
|
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 Zernio::WhatsAppCarouselCardComponent
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Zernio::WhatsAppCarouselCardComponent do
|
|
21
|
+
describe '.openapi_one_of' do
|
|
22
|
+
it 'lists the items referenced in the oneOf array' do
|
|
23
|
+
expect(described_class.openapi_one_of).to_not be_empty
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
describe '.openapi_discriminator_name' do
|
|
28
|
+
it 'returns the value of the "discriminator" property' do
|
|
29
|
+
expect(described_class.openapi_discriminator_name).to_not be_empty
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
describe '.openapi_discriminator_mapping' do
|
|
34
|
+
it 'returns the key/values of the "mapping" property' do
|
|
35
|
+
expect(described_class.openapi_discriminator_mapping.values.sort).to eq(described_class.openapi_one_of.sort)
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
describe '.build' do
|
|
40
|
+
it 'returns the correct model' do
|
|
41
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
@@ -0,0 +1,36 @@
|
|
|
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.4
|
|
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 Zernio::WhatsAppCarouselComponentCardsInner
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Zernio::WhatsAppCarouselComponentCardsInner do
|
|
21
|
+
#let(:instance) { Zernio::WhatsAppCarouselComponentCardsInner.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of WhatsAppCarouselComponentCardsInner' do
|
|
24
|
+
it 'should create an instance of WhatsAppCarouselComponentCardsInner' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Zernio::WhatsAppCarouselComponentCardsInner)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "components"' 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
|
+
end
|
|
@@ -0,0 +1,46 @@
|
|
|
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.4
|
|
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 Zernio::WhatsAppCarouselComponent
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Zernio::WhatsAppCarouselComponent do
|
|
21
|
+
#let(:instance) { Zernio::WhatsAppCarouselComponent.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of WhatsAppCarouselComponent' do
|
|
24
|
+
it 'should create an instance of WhatsAppCarouselComponent' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Zernio::WhatsAppCarouselComponent)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "type"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["carousel"])
|
|
34
|
+
# validator.allowable_values.each do |value|
|
|
35
|
+
# expect { instance.type = value }.not_to raise_error
|
|
36
|
+
# end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "cards"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
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.4
|
|
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 Zernio::WhatsAppLimitedTimeOfferComponentLimitedTimeOffer
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Zernio::WhatsAppLimitedTimeOfferComponentLimitedTimeOffer do
|
|
21
|
+
#let(:instance) { Zernio::WhatsAppLimitedTimeOfferComponentLimitedTimeOffer.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of WhatsAppLimitedTimeOfferComponentLimitedTimeOffer' do
|
|
24
|
+
it 'should create an instance of WhatsAppLimitedTimeOfferComponentLimitedTimeOffer' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Zernio::WhatsAppLimitedTimeOfferComponentLimitedTimeOffer)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "text"' 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 "has_expiration"' 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,46 @@
|
|
|
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.4
|
|
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 Zernio::WhatsAppLimitedTimeOfferComponent
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Zernio::WhatsAppLimitedTimeOfferComponent do
|
|
21
|
+
#let(:instance) { Zernio::WhatsAppLimitedTimeOfferComponent.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of WhatsAppLimitedTimeOfferComponent' do
|
|
24
|
+
it 'should create an instance of WhatsAppLimitedTimeOfferComponent' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(Zernio::WhatsAppLimitedTimeOfferComponent)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "type"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["limited_time_offer"])
|
|
34
|
+
# validator.allowable_values.each do |value|
|
|
35
|
+
# expect { instance.type = value }.not_to raise_error
|
|
36
|
+
# end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "limited_time_offer"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zernio-sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.549
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
@@ -1569,10 +1569,15 @@ files:
|
|
|
1569
1569
|
- docs/WhatsAppBodyComponentExample.md
|
|
1570
1570
|
- docs/WhatsAppButtonsComponent.md
|
|
1571
1571
|
- docs/WhatsAppCallingApi.md
|
|
1572
|
+
- docs/WhatsAppCarouselCardComponent.md
|
|
1573
|
+
- docs/WhatsAppCarouselComponent.md
|
|
1574
|
+
- docs/WhatsAppCarouselComponentCardsInner.md
|
|
1572
1575
|
- docs/WhatsAppFlowsApi.md
|
|
1573
1576
|
- docs/WhatsAppFooterComponent.md
|
|
1574
1577
|
- docs/WhatsAppHeaderComponent.md
|
|
1575
1578
|
- docs/WhatsAppHeaderComponentExample.md
|
|
1579
|
+
- docs/WhatsAppLimitedTimeOfferComponent.md
|
|
1580
|
+
- docs/WhatsAppLimitedTimeOfferComponentLimitedTimeOffer.md
|
|
1576
1581
|
- docs/WhatsAppPhoneNumbersApi.md
|
|
1577
1582
|
- docs/WhatsAppSandboxApi.md
|
|
1578
1583
|
- docs/WhatsAppSandboxSession.md
|
|
@@ -3118,9 +3123,14 @@ files:
|
|
|
3118
3123
|
- lib/zernio-sdk/models/whats_app_body_component.rb
|
|
3119
3124
|
- lib/zernio-sdk/models/whats_app_body_component_example.rb
|
|
3120
3125
|
- lib/zernio-sdk/models/whats_app_buttons_component.rb
|
|
3126
|
+
- lib/zernio-sdk/models/whats_app_carousel_card_component.rb
|
|
3127
|
+
- lib/zernio-sdk/models/whats_app_carousel_component.rb
|
|
3128
|
+
- lib/zernio-sdk/models/whats_app_carousel_component_cards_inner.rb
|
|
3121
3129
|
- lib/zernio-sdk/models/whats_app_footer_component.rb
|
|
3122
3130
|
- lib/zernio-sdk/models/whats_app_header_component.rb
|
|
3123
3131
|
- lib/zernio-sdk/models/whats_app_header_component_example.rb
|
|
3132
|
+
- lib/zernio-sdk/models/whats_app_limited_time_offer_component.rb
|
|
3133
|
+
- lib/zernio-sdk/models/whats_app_limited_time_offer_component_limited_time_offer.rb
|
|
3124
3134
|
- lib/zernio-sdk/models/whats_app_sandbox_session.rb
|
|
3125
3135
|
- lib/zernio-sdk/models/whats_app_template_button.rb
|
|
3126
3136
|
- lib/zernio-sdk/models/whats_app_template_component.rb
|
|
@@ -4657,9 +4667,14 @@ files:
|
|
|
4657
4667
|
- spec/models/whats_app_body_component_example_spec.rb
|
|
4658
4668
|
- spec/models/whats_app_body_component_spec.rb
|
|
4659
4669
|
- spec/models/whats_app_buttons_component_spec.rb
|
|
4670
|
+
- spec/models/whats_app_carousel_card_component_spec.rb
|
|
4671
|
+
- spec/models/whats_app_carousel_component_cards_inner_spec.rb
|
|
4672
|
+
- spec/models/whats_app_carousel_component_spec.rb
|
|
4660
4673
|
- spec/models/whats_app_footer_component_spec.rb
|
|
4661
4674
|
- spec/models/whats_app_header_component_example_spec.rb
|
|
4662
4675
|
- spec/models/whats_app_header_component_spec.rb
|
|
4676
|
+
- spec/models/whats_app_limited_time_offer_component_limited_time_offer_spec.rb
|
|
4677
|
+
- spec/models/whats_app_limited_time_offer_component_spec.rb
|
|
4663
4678
|
- spec/models/whats_app_sandbox_session_spec.rb
|
|
4664
4679
|
- spec/models/whats_app_template_button_spec.rb
|
|
4665
4680
|
- spec/models/whats_app_template_component_spec.rb
|
|
@@ -5409,6 +5424,7 @@ test_files:
|
|
|
5409
5424
|
- spec/models/get_broadcast200_response_broadcast_message_spec.rb
|
|
5410
5425
|
- spec/models/list_ad_campaigns200_response_spec.rb
|
|
5411
5426
|
- spec/models/crosspost_discord_message200_response_spec.rb
|
|
5427
|
+
- spec/models/whats_app_limited_time_offer_component_limited_time_offer_spec.rb
|
|
5412
5428
|
- spec/models/list_sequence_enrollments200_response_enrollments_inner_spec.rb
|
|
5413
5429
|
- spec/models/list_leads200_response_leads_inner_spec.rb
|
|
5414
5430
|
- spec/models/get_ad_account_finance200_response_spec.rb
|
|
@@ -5521,12 +5537,14 @@ test_files:
|
|
|
5521
5537
|
- spec/models/validate_media200_response_spec.rb
|
|
5522
5538
|
- spec/models/get_pinterest_boards200_response_boards_inner_spec.rb
|
|
5523
5539
|
- spec/models/whats_app_header_component_spec.rb
|
|
5540
|
+
- spec/models/whats_app_carousel_component_cards_inner_spec.rb
|
|
5524
5541
|
- spec/models/validate_post_length_request_spec.rb
|
|
5525
5542
|
- spec/models/get_whats_app_flow200_response_spec.rb
|
|
5526
5543
|
- spec/models/update_youtube_default_playlist_request_spec.rb
|
|
5527
5544
|
- spec/models/webhook_payload_account_ads_initial_sync_completed_spec.rb
|
|
5528
5545
|
- spec/models/remediate_phone_number_request_spec.rb
|
|
5529
5546
|
- spec/models/create_webhook_settings_request_spec.rb
|
|
5547
|
+
- spec/models/whats_app_limited_time_offer_component_spec.rb
|
|
5530
5548
|
- spec/models/telegram_platform_data_spec.rb
|
|
5531
5549
|
- spec/models/send_inbox_message_request_interactive_header_spec.rb
|
|
5532
5550
|
- spec/models/linked_in_ads_platform_data_jobs_headline_spec.rb
|
|
@@ -5541,6 +5559,7 @@ test_files:
|
|
|
5541
5559
|
- spec/models/get_google_business_services200_response_services_inner_price_spec.rb
|
|
5542
5560
|
- spec/models/update_ad_set200_response_spec.rb
|
|
5543
5561
|
- spec/models/create_standalone_ad_request_creatives_inner_spec.rb
|
|
5562
|
+
- spec/models/whats_app_carousel_card_component_spec.rb
|
|
5544
5563
|
- spec/models/update_facebook_page200_response_spec.rb
|
|
5545
5564
|
- spec/models/update_ad_creative200_response_spec.rb
|
|
5546
5565
|
- spec/models/get_inbox_post_comments200_response_meta_ad_comments_spec.rb
|
|
@@ -5565,6 +5584,7 @@ test_files:
|
|
|
5565
5584
|
- spec/models/get_ad_audience200_response_spec.rb
|
|
5566
5585
|
- spec/models/update_account_request_spec.rb
|
|
5567
5586
|
- spec/models/list_whats_app_calls200_response_calls_inner_spec.rb
|
|
5587
|
+
- spec/models/whats_app_carousel_component_spec.rb
|
|
5568
5588
|
- spec/models/list_snapchat_profiles200_response_public_profiles_inner_spec.rb
|
|
5569
5589
|
- spec/models/set_instagram_ice_breakers_request_spec.rb
|
|
5570
5590
|
- spec/models/send_inbox_message_request_quick_replies_inner_spec.rb
|