pingram 1.0.28 → 1.0.29
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/Gemfile.lock +1 -1
- data/lib/pingram/api_client.rb +1 -1
- data/lib/pingram/models/account_get_response.rb +44 -31
- data/lib/pingram/models/billing_post_response_body.rb +40 -27
- data/lib/pingram/models/ten_dlc_brand_admin_update_request.rb +13 -2
- data/lib/pingram/models/ten_dlc_brand_create_request.rb +99 -12
- data/lib/pingram/models/ten_dlc_brand_registration.rb +13 -1
- data/lib/pingram/models/ten_dlc_brand_registration_details.rb +13 -1
- data/lib/pingram/models/ten_dlc_brand_update_request.rb +13 -2
- data/lib/pingram/models/ten_dlc_campaign_admin_update_request.rb +20 -0
- data/lib/pingram/models/ten_dlc_campaign_registration.rb +20 -0
- data/lib/pingram/models/ten_dlc_campaign_registration_details.rb +20 -0
- data/lib/pingram/models/ten_dlc_campaign_update_request.rb +20 -0
- data/lib/pingram/version.rb +1 -1
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/byebug-13.0.0/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/date-3.5.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/io-console-0.9.2/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/io-console-0.9.2/mkmf.log +3 -3
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/jaro_winkler-1.5.6/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/psych-5.5.0/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/racc-1.8.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/stringio-3.2.0/gem_make.out +5 -5
- metadata +2 -2
|
@@ -22,34 +22,46 @@ module Pingram
|
|
|
22
22
|
|
|
23
23
|
attr_accessor :business_type
|
|
24
24
|
|
|
25
|
+
# Official registered legal business name. For SOLE_PROPRIETOR, may be a DBA or trade name.
|
|
25
26
|
attr_accessor :legal_name
|
|
26
27
|
|
|
27
|
-
#
|
|
28
|
+
# Public brand name shown to recipients and carriers.
|
|
28
29
|
attr_accessor :display_name
|
|
29
30
|
|
|
31
|
+
# Legal first name of the sole proprietor. Present when businessType is SOLE_PROPRIETOR.
|
|
30
32
|
attr_accessor :first_name
|
|
31
33
|
|
|
34
|
+
# Legal last name of the sole proprietor. Present when businessType is SOLE_PROPRIETOR.
|
|
32
35
|
attr_accessor :last_name
|
|
33
36
|
|
|
37
|
+
# For US companies (country US): 9-digit EIN (Employer Identification Number). For Canada (country CA): 9-digit BN (Business Number). For other countries: national business tax identifier. Omitted when businessType is SOLE_PROPRIETOR.
|
|
34
38
|
attr_accessor :tax_id
|
|
35
39
|
|
|
40
|
+
# Public website for the brand.
|
|
36
41
|
attr_accessor :website
|
|
37
42
|
|
|
43
|
+
# ISO 3166-1 alpha-2 country of incorporation (for example US or CA).
|
|
38
44
|
attr_accessor :country
|
|
39
45
|
|
|
46
|
+
# Street address that matches official tax registration.
|
|
40
47
|
attr_accessor :street
|
|
41
48
|
|
|
49
|
+
# City that matches official tax registration.
|
|
42
50
|
attr_accessor :city
|
|
43
51
|
|
|
52
|
+
# State (US) or province (CA) that matches official tax registration.
|
|
44
53
|
attr_accessor :state
|
|
45
54
|
|
|
55
|
+
# ZIP code (US) or postal code (CA) that matches official tax registration.
|
|
46
56
|
attr_accessor :postal_code
|
|
47
57
|
|
|
48
58
|
# Legacy records only; new submissions use structured address fields.
|
|
49
59
|
attr_accessor :full_address
|
|
50
60
|
|
|
61
|
+
# Email for the 10DLC compliance contact.
|
|
51
62
|
attr_accessor :compliance_contact_email
|
|
52
63
|
|
|
64
|
+
# Phone number for the 10DLC compliance contact.
|
|
53
65
|
attr_accessor :compliance_contact_phone
|
|
54
66
|
|
|
55
67
|
# Pingram-side 10DLC registration workflow status (brand or campaign). - not_started: no customer submission yet - pending_review: customer submitted; Pingram has not submitted to carriers - in_progress: submitted for carrier review - approved | rejected | info_needed: review outcome
|
|
@@ -22,34 +22,46 @@ module Pingram
|
|
|
22
22
|
|
|
23
23
|
attr_accessor :business_type
|
|
24
24
|
|
|
25
|
+
# Official registered legal business name. For SOLE_PROPRIETOR, may be a DBA or trade name.
|
|
25
26
|
attr_accessor :legal_name
|
|
26
27
|
|
|
27
|
-
#
|
|
28
|
+
# Public brand name shown to recipients and carriers.
|
|
28
29
|
attr_accessor :display_name
|
|
29
30
|
|
|
31
|
+
# Legal first name of the sole proprietor. Present when businessType is SOLE_PROPRIETOR.
|
|
30
32
|
attr_accessor :first_name
|
|
31
33
|
|
|
34
|
+
# Legal last name of the sole proprietor. Present when businessType is SOLE_PROPRIETOR.
|
|
32
35
|
attr_accessor :last_name
|
|
33
36
|
|
|
37
|
+
# For US companies (country US): 9-digit EIN (Employer Identification Number). For Canada (country CA): 9-digit BN (Business Number). For other countries: national business tax identifier. Omitted when businessType is SOLE_PROPRIETOR.
|
|
34
38
|
attr_accessor :tax_id
|
|
35
39
|
|
|
40
|
+
# Public website for the brand.
|
|
36
41
|
attr_accessor :website
|
|
37
42
|
|
|
43
|
+
# ISO 3166-1 alpha-2 country of incorporation (for example US or CA).
|
|
38
44
|
attr_accessor :country
|
|
39
45
|
|
|
46
|
+
# Street address that matches official tax registration.
|
|
40
47
|
attr_accessor :street
|
|
41
48
|
|
|
49
|
+
# City that matches official tax registration.
|
|
42
50
|
attr_accessor :city
|
|
43
51
|
|
|
52
|
+
# State (US) or province (CA) that matches official tax registration.
|
|
44
53
|
attr_accessor :state
|
|
45
54
|
|
|
55
|
+
# ZIP code (US) or postal code (CA) that matches official tax registration.
|
|
46
56
|
attr_accessor :postal_code
|
|
47
57
|
|
|
48
58
|
# Legacy records only; new submissions use structured address fields.
|
|
49
59
|
attr_accessor :full_address
|
|
50
60
|
|
|
61
|
+
# Email for the 10DLC compliance contact.
|
|
51
62
|
attr_accessor :compliance_contact_email
|
|
52
63
|
|
|
64
|
+
# Phone number for the 10DLC compliance contact.
|
|
53
65
|
attr_accessor :compliance_contact_phone
|
|
54
66
|
|
|
55
67
|
# Pingram-side 10DLC registration workflow status (brand or campaign). - not_started: no customer submission yet - pending_review: customer submitted; Pingram has not submitted to carriers - in_progress: submitted for carrier review - approved | rejected | info_needed: review outcome
|
|
@@ -22,32 +22,43 @@ module Pingram
|
|
|
22
22
|
# Legal entity type for a 10DLC brand. - PRIVATE_PROFIT: private for-profit (LLC, corp, etc.) - SOLE_PROPRIETOR: sole proprietorship - PUBLIC_PROFIT: publicly traded for-profit - NON_PROFIT: non-profit - GOVERNMENT: government
|
|
23
23
|
attr_accessor :business_type
|
|
24
24
|
|
|
25
|
+
# Official registered legal business name. For SOLE_PROPRIETOR, optional DBA or trade name (defaults to firstName and lastName).
|
|
25
26
|
attr_accessor :legal_name
|
|
26
27
|
|
|
27
|
-
#
|
|
28
|
+
# Public brand name shown to recipients and carriers. Use the name customers recognize (your DBA or trade name). For SOLE_PROPRIETOR, this is the brand you send as — not the individual's legal name. Omit to keep the existing value. If you change legalName and omit displayName, displayName is reset to the new legalName.
|
|
28
29
|
attr_accessor :display_name
|
|
29
30
|
|
|
31
|
+
# Legal first name of the sole proprietor. Required when businessType is SOLE_PROPRIETOR.
|
|
30
32
|
attr_accessor :first_name
|
|
31
33
|
|
|
34
|
+
# Legal last name of the sole proprietor. Required when businessType is SOLE_PROPRIETOR.
|
|
32
35
|
attr_accessor :last_name
|
|
33
36
|
|
|
34
|
-
# For US companies (country US): 9-digit EIN (Employer Identification Number). For Canada (country CA): 9-digit BN (Business Number). For other countries: national business tax identifier.
|
|
37
|
+
# For US companies (country US): 9-digit EIN (Employer Identification Number). For Canada (country CA): 9-digit BN (Business Number). For other countries: national business tax identifier. Required except when businessType is SOLE_PROPRIETOR.
|
|
35
38
|
attr_accessor :tax_id
|
|
36
39
|
|
|
40
|
+
# Public website for the brand. Include a scheme (https://) or a domain; https:// is prepended when omitted. Carriers expect a working site with privacy policy and terms.
|
|
37
41
|
attr_accessor :website
|
|
38
42
|
|
|
43
|
+
# ISO 3166-1 alpha-2 country of incorporation (for example US or CA).
|
|
39
44
|
attr_accessor :country
|
|
40
45
|
|
|
46
|
+
# Street address that matches official tax registration.
|
|
41
47
|
attr_accessor :street
|
|
42
48
|
|
|
49
|
+
# City that matches official tax registration.
|
|
43
50
|
attr_accessor :city
|
|
44
51
|
|
|
52
|
+
# State (US) or province (CA) that matches official tax registration.
|
|
45
53
|
attr_accessor :state
|
|
46
54
|
|
|
55
|
+
# ZIP code (US) or postal code (CA) that matches official tax registration.
|
|
47
56
|
attr_accessor :postal_code
|
|
48
57
|
|
|
58
|
+
# Email for the 10DLC compliance contact. Used for carrier and registration follow-up.
|
|
49
59
|
attr_accessor :compliance_contact_email
|
|
50
60
|
|
|
61
|
+
# Phone number for the 10DLC compliance contact. E.164 preferred; national numbers are normalized using country.
|
|
51
62
|
attr_accessor :compliance_contact_phone
|
|
52
63
|
|
|
53
64
|
class EnumAttributeValidator
|
|
@@ -16,44 +16,64 @@ require 'time'
|
|
|
16
16
|
module Pingram
|
|
17
17
|
# Request body for PATCH /registrations/us/10dlc/campaign/admin
|
|
18
18
|
class TenDlcCampaignAdminUpdateRequest < ApiModelBase
|
|
19
|
+
# Summary of what this campaign sends and why, including audience and typical message content. Required before carrier submission.
|
|
19
20
|
attr_accessor :campaign_description
|
|
20
21
|
|
|
22
|
+
# Example SMS that represents actual campaign traffic. Required before carrier submission. Should match the use case and typically identify the brand and include STOP/HELP language.
|
|
21
23
|
attr_accessor :campaign_sample1
|
|
22
24
|
|
|
25
|
+
# Second example SMS. Required before carrier submission. Required for MARKETING and MIXED use cases.
|
|
23
26
|
attr_accessor :campaign_sample2
|
|
24
27
|
|
|
28
|
+
# Optional third example SMS.
|
|
25
29
|
attr_accessor :campaign_sample3
|
|
26
30
|
|
|
31
|
+
# Optional fourth example SMS.
|
|
27
32
|
attr_accessor :campaign_sample4
|
|
28
33
|
|
|
34
|
+
# How recipients opt in (for example website form, checkout, or keyword). Describe the call-to-action and where consent is collected. Required before carrier submission.
|
|
29
35
|
attr_accessor :campaign_message_flow
|
|
30
36
|
|
|
37
|
+
# Extra opt-in keywords as a comma-separated list. START is always included.
|
|
31
38
|
attr_accessor :campaign_optin_keywords
|
|
32
39
|
|
|
40
|
+
# Auto-reply sent when a recipient opts in. Required before carrier submission. Should confirm the subscription, mention message frequency, and include STOP and HELP instructions.
|
|
33
41
|
attr_accessor :campaign_optin_message
|
|
34
42
|
|
|
43
|
+
# Extra opt-out keywords as a comma-separated list. STOP is always included.
|
|
35
44
|
attr_accessor :campaign_optout_keywords
|
|
36
45
|
|
|
46
|
+
# Auto-reply sent when a recipient opts out. Required before carrier submission. Should confirm they will receive no further messages.
|
|
37
47
|
attr_accessor :campaign_optout_message
|
|
38
48
|
|
|
49
|
+
# Extra help keywords as a comma-separated list. HELP is always included.
|
|
39
50
|
attr_accessor :campaign_help_keywords
|
|
40
51
|
|
|
52
|
+
# Auto-reply sent when a recipient texts a help keyword. Required before carrier submission. Should include a support contact (email and/or phone).
|
|
41
53
|
attr_accessor :campaign_help_message
|
|
42
54
|
|
|
55
|
+
# Whether campaign messages include URLs.
|
|
43
56
|
attr_accessor :campaign_embedded_link
|
|
44
57
|
|
|
58
|
+
# Sample URL that appears in messages. Provide when campaignEmbeddedLink is true.
|
|
45
59
|
attr_accessor :campaign_embedded_link_url
|
|
46
60
|
|
|
61
|
+
# Whether campaign messages include phone numbers.
|
|
47
62
|
attr_accessor :campaign_embedded_phone
|
|
48
63
|
|
|
64
|
+
# Whether campaign content is age-restricted (18+).
|
|
49
65
|
attr_accessor :campaign_age_gated
|
|
50
66
|
|
|
67
|
+
# Whether the campaign relates to direct lending or loan products.
|
|
51
68
|
attr_accessor :campaign_direct_lending
|
|
52
69
|
|
|
70
|
+
# Public URL of the privacy policy that covers this SMS program.
|
|
53
71
|
attr_accessor :campaign_privacy_policy_link
|
|
54
72
|
|
|
73
|
+
# Public URL of the terms and conditions that cover this SMS program.
|
|
55
74
|
attr_accessor :campaign_terms_and_conditions_link
|
|
56
75
|
|
|
76
|
+
# 10DLC campaign use case submitted to carriers. Required before carrier submission. One of 2FA, ACCOUNT_NOTIFICATION, CUSTOMER_CARE, DELIVERY_NOTIFICATION, FRAUD_ALERT, MARKETING, MIXED, POLLING_VOTING, PUBLIC_SERVICE_ANNOUNCEMENT, or SECURITY_ALERT. For MIXED, append comma-separated sub-use cases after MIXED (sub-use cases cannot include MIXED), for example MIXED,2FA,ACCOUNT_NOTIFICATION.
|
|
57
77
|
attr_accessor :campaign_usecase
|
|
58
78
|
|
|
59
79
|
# Pingram-side 10DLC registration workflow status (brand or campaign). - not_started: no customer submission yet - pending_review: customer submitted; Pingram has not submitted to carriers - in_progress: submitted for carrier review - approved | rejected | info_needed: review outcome
|
|
@@ -21,44 +21,64 @@ module Pingram
|
|
|
21
21
|
# Pingram-side 10DLC registration workflow status (brand or campaign). - not_started: no customer submission yet - pending_review: customer submitted; Pingram has not submitted to carriers - in_progress: submitted for carrier review - approved | rejected | info_needed: review outcome
|
|
22
22
|
attr_accessor :campaign_status
|
|
23
23
|
|
|
24
|
+
# Summary of what this campaign sends and why, including audience and typical message content. Required before carrier submission.
|
|
24
25
|
attr_accessor :campaign_description
|
|
25
26
|
|
|
27
|
+
# Example SMS that represents actual campaign traffic. Required before carrier submission. Should match the use case and typically identify the brand and include STOP/HELP language.
|
|
26
28
|
attr_accessor :campaign_sample1
|
|
27
29
|
|
|
30
|
+
# Second example SMS. Required before carrier submission. Required for MARKETING and MIXED use cases.
|
|
28
31
|
attr_accessor :campaign_sample2
|
|
29
32
|
|
|
33
|
+
# Optional third example SMS.
|
|
30
34
|
attr_accessor :campaign_sample3
|
|
31
35
|
|
|
36
|
+
# Optional fourth example SMS.
|
|
32
37
|
attr_accessor :campaign_sample4
|
|
33
38
|
|
|
39
|
+
# How recipients opt in (for example website form, checkout, or keyword). Describe the call-to-action and where consent is collected. Required before carrier submission.
|
|
34
40
|
attr_accessor :campaign_message_flow
|
|
35
41
|
|
|
42
|
+
# Extra opt-in keywords as a comma-separated list. START is always included.
|
|
36
43
|
attr_accessor :campaign_optin_keywords
|
|
37
44
|
|
|
45
|
+
# Auto-reply sent when a recipient opts in. Required before carrier submission. Should confirm the subscription, mention message frequency, and include STOP and HELP instructions.
|
|
38
46
|
attr_accessor :campaign_optin_message
|
|
39
47
|
|
|
48
|
+
# Extra opt-out keywords as a comma-separated list. STOP is always included.
|
|
40
49
|
attr_accessor :campaign_optout_keywords
|
|
41
50
|
|
|
51
|
+
# Auto-reply sent when a recipient opts out. Required before carrier submission. Should confirm they will receive no further messages.
|
|
42
52
|
attr_accessor :campaign_optout_message
|
|
43
53
|
|
|
54
|
+
# Extra help keywords as a comma-separated list. HELP is always included.
|
|
44
55
|
attr_accessor :campaign_help_keywords
|
|
45
56
|
|
|
57
|
+
# Auto-reply sent when a recipient texts a help keyword. Required before carrier submission. Should include a support contact (email and/or phone).
|
|
46
58
|
attr_accessor :campaign_help_message
|
|
47
59
|
|
|
60
|
+
# Whether campaign messages include URLs.
|
|
48
61
|
attr_accessor :campaign_embedded_link
|
|
49
62
|
|
|
63
|
+
# Sample URL that appears in messages. Provide when campaignEmbeddedLink is true.
|
|
50
64
|
attr_accessor :campaign_embedded_link_url
|
|
51
65
|
|
|
66
|
+
# Whether campaign messages include phone numbers.
|
|
52
67
|
attr_accessor :campaign_embedded_phone
|
|
53
68
|
|
|
69
|
+
# Whether campaign content is age-restricted (18+).
|
|
54
70
|
attr_accessor :campaign_age_gated
|
|
55
71
|
|
|
72
|
+
# Whether the campaign relates to direct lending or loan products.
|
|
56
73
|
attr_accessor :campaign_direct_lending
|
|
57
74
|
|
|
75
|
+
# Public URL of the privacy policy that covers this SMS program.
|
|
58
76
|
attr_accessor :campaign_privacy_policy_link
|
|
59
77
|
|
|
78
|
+
# Public URL of the terms and conditions that cover this SMS program.
|
|
60
79
|
attr_accessor :campaign_terms_and_conditions_link
|
|
61
80
|
|
|
81
|
+
# 10DLC campaign use case submitted to carriers. Required before carrier submission. One of 2FA, ACCOUNT_NOTIFICATION, CUSTOMER_CARE, DELIVERY_NOTIFICATION, FRAUD_ALERT, MARKETING, MIXED, POLLING_VOTING, PUBLIC_SERVICE_ANNOUNCEMENT, or SECURITY_ALERT. For MIXED, append comma-separated sub-use cases after MIXED (sub-use cases cannot include MIXED), for example MIXED,2FA,ACCOUNT_NOTIFICATION.
|
|
62
82
|
attr_accessor :campaign_usecase
|
|
63
83
|
|
|
64
84
|
attr_accessor :created_at
|
|
@@ -21,44 +21,64 @@ module Pingram
|
|
|
21
21
|
# Pingram-side 10DLC registration workflow status (brand or campaign). - not_started: no customer submission yet - pending_review: customer submitted; Pingram has not submitted to carriers - in_progress: submitted for carrier review - approved | rejected | info_needed: review outcome
|
|
22
22
|
attr_accessor :campaign_status
|
|
23
23
|
|
|
24
|
+
# Summary of what this campaign sends and why, including audience and typical message content. Required before carrier submission.
|
|
24
25
|
attr_accessor :campaign_description
|
|
25
26
|
|
|
27
|
+
# Example SMS that represents actual campaign traffic. Required before carrier submission. Should match the use case and typically identify the brand and include STOP/HELP language.
|
|
26
28
|
attr_accessor :campaign_sample1
|
|
27
29
|
|
|
30
|
+
# Second example SMS. Required before carrier submission. Required for MARKETING and MIXED use cases.
|
|
28
31
|
attr_accessor :campaign_sample2
|
|
29
32
|
|
|
33
|
+
# Optional third example SMS.
|
|
30
34
|
attr_accessor :campaign_sample3
|
|
31
35
|
|
|
36
|
+
# Optional fourth example SMS.
|
|
32
37
|
attr_accessor :campaign_sample4
|
|
33
38
|
|
|
39
|
+
# How recipients opt in (for example website form, checkout, or keyword). Describe the call-to-action and where consent is collected. Required before carrier submission.
|
|
34
40
|
attr_accessor :campaign_message_flow
|
|
35
41
|
|
|
42
|
+
# Extra opt-in keywords as a comma-separated list. START is always included.
|
|
36
43
|
attr_accessor :campaign_optin_keywords
|
|
37
44
|
|
|
45
|
+
# Auto-reply sent when a recipient opts in. Required before carrier submission. Should confirm the subscription, mention message frequency, and include STOP and HELP instructions.
|
|
38
46
|
attr_accessor :campaign_optin_message
|
|
39
47
|
|
|
48
|
+
# Extra opt-out keywords as a comma-separated list. STOP is always included.
|
|
40
49
|
attr_accessor :campaign_optout_keywords
|
|
41
50
|
|
|
51
|
+
# Auto-reply sent when a recipient opts out. Required before carrier submission. Should confirm they will receive no further messages.
|
|
42
52
|
attr_accessor :campaign_optout_message
|
|
43
53
|
|
|
54
|
+
# Extra help keywords as a comma-separated list. HELP is always included.
|
|
44
55
|
attr_accessor :campaign_help_keywords
|
|
45
56
|
|
|
57
|
+
# Auto-reply sent when a recipient texts a help keyword. Required before carrier submission. Should include a support contact (email and/or phone).
|
|
46
58
|
attr_accessor :campaign_help_message
|
|
47
59
|
|
|
60
|
+
# Whether campaign messages include URLs.
|
|
48
61
|
attr_accessor :campaign_embedded_link
|
|
49
62
|
|
|
63
|
+
# Sample URL that appears in messages. Provide when campaignEmbeddedLink is true.
|
|
50
64
|
attr_accessor :campaign_embedded_link_url
|
|
51
65
|
|
|
66
|
+
# Whether campaign messages include phone numbers.
|
|
52
67
|
attr_accessor :campaign_embedded_phone
|
|
53
68
|
|
|
69
|
+
# Whether campaign content is age-restricted (18+).
|
|
54
70
|
attr_accessor :campaign_age_gated
|
|
55
71
|
|
|
72
|
+
# Whether the campaign relates to direct lending or loan products.
|
|
56
73
|
attr_accessor :campaign_direct_lending
|
|
57
74
|
|
|
75
|
+
# Public URL of the privacy policy that covers this SMS program.
|
|
58
76
|
attr_accessor :campaign_privacy_policy_link
|
|
59
77
|
|
|
78
|
+
# Public URL of the terms and conditions that cover this SMS program.
|
|
60
79
|
attr_accessor :campaign_terms_and_conditions_link
|
|
61
80
|
|
|
81
|
+
# 10DLC campaign use case submitted to carriers. Required before carrier submission. One of 2FA, ACCOUNT_NOTIFICATION, CUSTOMER_CARE, DELIVERY_NOTIFICATION, FRAUD_ALERT, MARKETING, MIXED, POLLING_VOTING, PUBLIC_SERVICE_ANNOUNCEMENT, or SECURITY_ALERT. For MIXED, append comma-separated sub-use cases after MIXED (sub-use cases cannot include MIXED), for example MIXED,2FA,ACCOUNT_NOTIFICATION.
|
|
62
82
|
attr_accessor :campaign_usecase
|
|
63
83
|
|
|
64
84
|
attr_accessor :created_at
|
|
@@ -16,44 +16,64 @@ require 'time'
|
|
|
16
16
|
module Pingram
|
|
17
17
|
# Request body for PATCH /registrations/us/10dlc/campaign
|
|
18
18
|
class TenDlcCampaignUpdateRequest < ApiModelBase
|
|
19
|
+
# Summary of what this campaign sends and why, including audience and typical message content. Required before carrier submission.
|
|
19
20
|
attr_accessor :campaign_description
|
|
20
21
|
|
|
22
|
+
# Example SMS that represents actual campaign traffic. Required before carrier submission. Should match the use case and typically identify the brand and include STOP/HELP language.
|
|
21
23
|
attr_accessor :campaign_sample1
|
|
22
24
|
|
|
25
|
+
# Second example SMS. Required before carrier submission. Required for MARKETING and MIXED use cases.
|
|
23
26
|
attr_accessor :campaign_sample2
|
|
24
27
|
|
|
28
|
+
# Optional third example SMS.
|
|
25
29
|
attr_accessor :campaign_sample3
|
|
26
30
|
|
|
31
|
+
# Optional fourth example SMS.
|
|
27
32
|
attr_accessor :campaign_sample4
|
|
28
33
|
|
|
34
|
+
# How recipients opt in (for example website form, checkout, or keyword). Describe the call-to-action and where consent is collected. Required before carrier submission.
|
|
29
35
|
attr_accessor :campaign_message_flow
|
|
30
36
|
|
|
37
|
+
# Extra opt-in keywords as a comma-separated list. START is always included.
|
|
31
38
|
attr_accessor :campaign_optin_keywords
|
|
32
39
|
|
|
40
|
+
# Auto-reply sent when a recipient opts in. Required before carrier submission. Should confirm the subscription, mention message frequency, and include STOP and HELP instructions.
|
|
33
41
|
attr_accessor :campaign_optin_message
|
|
34
42
|
|
|
43
|
+
# Extra opt-out keywords as a comma-separated list. STOP is always included.
|
|
35
44
|
attr_accessor :campaign_optout_keywords
|
|
36
45
|
|
|
46
|
+
# Auto-reply sent when a recipient opts out. Required before carrier submission. Should confirm they will receive no further messages.
|
|
37
47
|
attr_accessor :campaign_optout_message
|
|
38
48
|
|
|
49
|
+
# Extra help keywords as a comma-separated list. HELP is always included.
|
|
39
50
|
attr_accessor :campaign_help_keywords
|
|
40
51
|
|
|
52
|
+
# Auto-reply sent when a recipient texts a help keyword. Required before carrier submission. Should include a support contact (email and/or phone).
|
|
41
53
|
attr_accessor :campaign_help_message
|
|
42
54
|
|
|
55
|
+
# Whether campaign messages include URLs.
|
|
43
56
|
attr_accessor :campaign_embedded_link
|
|
44
57
|
|
|
58
|
+
# Sample URL that appears in messages. Provide when campaignEmbeddedLink is true.
|
|
45
59
|
attr_accessor :campaign_embedded_link_url
|
|
46
60
|
|
|
61
|
+
# Whether campaign messages include phone numbers.
|
|
47
62
|
attr_accessor :campaign_embedded_phone
|
|
48
63
|
|
|
64
|
+
# Whether campaign content is age-restricted (18+).
|
|
49
65
|
attr_accessor :campaign_age_gated
|
|
50
66
|
|
|
67
|
+
# Whether the campaign relates to direct lending or loan products.
|
|
51
68
|
attr_accessor :campaign_direct_lending
|
|
52
69
|
|
|
70
|
+
# Public URL of the privacy policy that covers this SMS program.
|
|
53
71
|
attr_accessor :campaign_privacy_policy_link
|
|
54
72
|
|
|
73
|
+
# Public URL of the terms and conditions that cover this SMS program.
|
|
55
74
|
attr_accessor :campaign_terms_and_conditions_link
|
|
56
75
|
|
|
76
|
+
# 10DLC campaign use case submitted to carriers. Required before carrier submission. One of 2FA, ACCOUNT_NOTIFICATION, CUSTOMER_CARE, DELIVERY_NOTIFICATION, FRAUD_ALERT, MARKETING, MIXED, POLLING_VOTING, PUBLIC_SERVICE_ANNOUNCEMENT, or SECURITY_ALERT. For MIXED, append comma-separated sub-use cases after MIXED (sub-use cases cannot include MIXED), for example MIXED,2FA,ACCOUNT_NOTIFICATION.
|
|
57
77
|
attr_accessor :campaign_usecase
|
|
58
78
|
|
|
59
79
|
# Attribute mapping from ruby-style variable name to JSON key.
|
data/lib/pingram/version.rb
CHANGED
|
@@ -3,10 +3,10 @@ current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/v
|
|
|
3
3
|
creating Makefile
|
|
4
4
|
|
|
5
5
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/byebug-13.0.0/ext/byebug
|
|
6
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-1bd7ps sitelibdir\=./.gem.20260910-2474-1bd7ps clean
|
|
7
7
|
|
|
8
8
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/byebug-13.0.0/ext/byebug
|
|
9
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-1bd7ps sitelibdir\=./.gem.20260910-2474-1bd7ps
|
|
10
10
|
compiling breakpoint.c
|
|
11
11
|
compiling byebug.c
|
|
12
12
|
byebug.c: In function ‘check_started’:
|
|
@@ -35,8 +35,8 @@ compiling threads.c
|
|
|
35
35
|
linking shared-object byebug/byebug.so
|
|
36
36
|
|
|
37
37
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/byebug-13.0.0/ext/byebug
|
|
38
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
39
|
-
/usr/bin/install -c -m 0755 byebug.so ./.gem.
|
|
38
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-1bd7ps sitelibdir\=./.gem.20260910-2474-1bd7ps install
|
|
39
|
+
/usr/bin/install -c -m 0755 byebug.so ./.gem.20260910-2474-1bd7ps/byebug
|
|
40
40
|
|
|
41
41
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/byebug-13.0.0/ext/byebug
|
|
42
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
42
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-1bd7ps sitelibdir\=./.gem.20260910-2474-1bd7ps clean
|
|
@@ -6,10 +6,10 @@ checking for altzone in time.h with -Werror... no
|
|
|
6
6
|
creating Makefile
|
|
7
7
|
|
|
8
8
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date
|
|
9
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-c0hrrx sitelibdir\=./.gem.20260910-2474-c0hrrx clean
|
|
10
10
|
|
|
11
11
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date
|
|
12
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
12
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-c0hrrx sitelibdir\=./.gem.20260910-2474-c0hrrx
|
|
13
13
|
compiling date_core.c
|
|
14
14
|
compiling date_parse.c
|
|
15
15
|
compiling date_strftime.c
|
|
@@ -17,8 +17,8 @@ compiling date_strptime.c
|
|
|
17
17
|
linking shared-object date_core.so
|
|
18
18
|
|
|
19
19
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date
|
|
20
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
21
|
-
/usr/bin/install -c -m 0755 date_core.so ./.gem.
|
|
20
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-c0hrrx sitelibdir\=./.gem.20260910-2474-c0hrrx install
|
|
21
|
+
/usr/bin/install -c -m 0755 date_core.so ./.gem.20260910-2474-c0hrrx
|
|
22
22
|
|
|
23
23
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/date-3.5.1/ext/date
|
|
24
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
24
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-c0hrrx sitelibdir\=./.gem.20260910-2474-c0hrrx clean
|
|
@@ -17,16 +17,16 @@ checking for rb_prepend_module()... yes
|
|
|
17
17
|
creating Makefile
|
|
18
18
|
|
|
19
19
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/io-console-0.9.2/ext/io/console
|
|
20
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
20
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-7k6wwz sitelibdir\=./.gem.20260910-2474-7k6wwz clean
|
|
21
21
|
|
|
22
22
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/io-console-0.9.2/ext/io/console
|
|
23
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
23
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-7k6wwz sitelibdir\=./.gem.20260910-2474-7k6wwz
|
|
24
24
|
compiling console.c
|
|
25
25
|
linking shared-object io/console.so
|
|
26
26
|
|
|
27
27
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/io-console-0.9.2/ext/io/console
|
|
28
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
29
|
-
/usr/bin/install -c -m 0755 console.so ./.gem.
|
|
28
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-7k6wwz sitelibdir\=./.gem.20260910-2474-7k6wwz install
|
|
29
|
+
/usr/bin/install -c -m 0755 console.so ./.gem.20260910-2474-7k6wwz/io
|
|
30
30
|
|
|
31
31
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/io-console-0.9.2/ext/io/console
|
|
32
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
32
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-7k6wwz sitelibdir\=./.gem.20260910-2474-7k6wwz clean
|
|
@@ -143,7 +143,7 @@ checked program was:
|
|
|
143
143
|
/* end */
|
|
144
144
|
|
|
145
145
|
LD_LIBRARY_PATH=.:/opt/hostedtoolcache/Ruby/3.2.11/x64/lib "gcc -o conftest -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0/x86_64-linux -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0/ruby/backward -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0 -I. -DENABLE_PATH_CHECK=0 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wundef -fPIC conftest.c -L. -L/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -Wl,-rpath,/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--no-as-needed -Wl,-rpath,/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -L/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -lruby -lm -lpthread -lc"
|
|
146
|
-
/usr/bin/ld: /tmp/
|
|
146
|
+
/usr/bin/ld: /tmp/ccpmzFIP.o: in function `t':
|
|
147
147
|
/home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/io-console-0.9.2/ext/io/console/conftest.c:17:(.text+0xb): undefined reference to `rb_io_path'
|
|
148
148
|
collect2: error: ld returned 1 exit status
|
|
149
149
|
checked program was:
|
|
@@ -203,7 +203,7 @@ checked program was:
|
|
|
203
203
|
/* end */
|
|
204
204
|
|
|
205
205
|
LD_LIBRARY_PATH=.:/opt/hostedtoolcache/Ruby/3.2.11/x64/lib "gcc -o conftest -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0/x86_64-linux -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0/ruby/backward -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0 -I. -DENABLE_PATH_CHECK=0 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wundef -fPIC conftest.c -L. -L/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -Wl,-rpath,/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--no-as-needed -Wl,-rpath,/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -L/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -lruby -lm -lpthread -lc"
|
|
206
|
-
/usr/bin/ld: /tmp/
|
|
206
|
+
/usr/bin/ld: /tmp/cclkIkqL.o: in function `t':
|
|
207
207
|
/home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/io-console-0.9.2/ext/io/console/conftest.c:17:(.text+0xb): undefined reference to `rb_io_closed_p'
|
|
208
208
|
collect2: error: ld returned 1 exit status
|
|
209
209
|
checked program was:
|
|
@@ -263,7 +263,7 @@ checked program was:
|
|
|
263
263
|
/* end */
|
|
264
264
|
|
|
265
265
|
LD_LIBRARY_PATH=.:/opt/hostedtoolcache/Ruby/3.2.11/x64/lib "gcc -o conftest -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0/x86_64-linux -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0/ruby/backward -I/opt/hostedtoolcache/Ruby/3.2.11/x64/include/ruby-3.2.0 -I. -DENABLE_PATH_CHECK=0 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wundef -fPIC conftest.c -L. -L/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -Wl,-rpath,/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -L. -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--no-as-needed -Wl,-rpath,/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -L/opt/hostedtoolcache/Ruby/3.2.11/x64/lib -lruby -lm -lpthread -lc"
|
|
266
|
-
/usr/bin/ld: /tmp/
|
|
266
|
+
/usr/bin/ld: /tmp/ccYZ2nIL.o: in function `t':
|
|
267
267
|
/home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/io-console-0.9.2/ext/io/console/conftest.c:17:(.text+0xb): undefined reference to `rb_io_open_descriptor'
|
|
268
268
|
collect2: error: ld returned 1 exit status
|
|
269
269
|
checked program was:
|
|
@@ -3,10 +3,10 @@ current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/v
|
|
|
3
3
|
creating Makefile
|
|
4
4
|
|
|
5
5
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
|
|
6
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-ym7ib3 sitelibdir\=./.gem.20260910-2474-ym7ib3 clean
|
|
7
7
|
|
|
8
8
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
|
|
9
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-ym7ib3 sitelibdir\=./.gem.20260910-2474-ym7ib3
|
|
10
10
|
compiling adj_matrix.c
|
|
11
11
|
adj_matrix.c: In function ‘adj_matrix_default’:
|
|
12
12
|
adj_matrix.c:82:12: warning: old-style function definition [-Wold-style-definition]
|
|
@@ -22,8 +22,8 @@ compiling jaro_winkler.c
|
|
|
22
22
|
linking shared-object jaro_winkler/jaro_winkler_ext.so
|
|
23
23
|
|
|
24
24
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
|
|
25
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
26
|
-
/usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.
|
|
25
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-ym7ib3 sitelibdir\=./.gem.20260910-2474-ym7ib3 install
|
|
26
|
+
/usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.20260910-2474-ym7ib3/jaro_winkler
|
|
27
27
|
|
|
28
28
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/jaro_winkler-1.5.6/ext/jaro_winkler
|
|
29
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
29
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-ym7ib3 sitelibdir\=./.gem.20260910-2474-ym7ib3 clean
|
|
@@ -3,13 +3,13 @@ current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/v
|
|
|
3
3
|
creating Makefile
|
|
4
4
|
|
|
5
5
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/psych-5.5.0/ext/psych
|
|
6
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-utv0rk sitelibdir\=./.gem.20260910-2474-utv0rk clean
|
|
7
7
|
cd libyaml && make clean
|
|
8
8
|
/bin/sh: 1: cd: can't cd to libyaml
|
|
9
9
|
make: [Makefile:283: clean-so] Error 2 (ignored)
|
|
10
10
|
|
|
11
11
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/psych-5.5.0/ext/psych
|
|
12
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
12
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-utv0rk sitelibdir\=./.gem.20260910-2474-utv0rk
|
|
13
13
|
compiling psych.c
|
|
14
14
|
compiling psych_emitter.c
|
|
15
15
|
compiling psych_parser.c
|
|
@@ -18,11 +18,11 @@ compiling psych_yaml_tree.c
|
|
|
18
18
|
linking shared-object psych.so
|
|
19
19
|
|
|
20
20
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/psych-5.5.0/ext/psych
|
|
21
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
22
|
-
/usr/bin/install -c -m 0755 psych.so ./.gem.
|
|
21
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-utv0rk sitelibdir\=./.gem.20260910-2474-utv0rk install
|
|
22
|
+
/usr/bin/install -c -m 0755 psych.so ./.gem.20260910-2474-utv0rk
|
|
23
23
|
|
|
24
24
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/psych-5.5.0/ext/psych
|
|
25
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
25
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-utv0rk sitelibdir\=./.gem.20260910-2474-utv0rk clean
|
|
26
26
|
cd libyaml && make clean
|
|
27
27
|
/bin/sh: 1: cd: can't cd to libyaml
|
|
28
28
|
make: [Makefile:283: clean-so] Error 2 (ignored)
|
|
@@ -3,16 +3,16 @@ current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/v
|
|
|
3
3
|
creating Makefile
|
|
4
4
|
|
|
5
5
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/ext/racc/cparse
|
|
6
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
6
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-71glor sitelibdir\=./.gem.20260910-2474-71glor clean
|
|
7
7
|
|
|
8
8
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/ext/racc/cparse
|
|
9
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
9
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-71glor sitelibdir\=./.gem.20260910-2474-71glor
|
|
10
10
|
compiling cparse.c
|
|
11
11
|
linking shared-object racc/cparse.so
|
|
12
12
|
|
|
13
13
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/ext/racc/cparse
|
|
14
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
15
|
-
/usr/bin/install -c -m 0755 cparse.so ./.gem.
|
|
14
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-71glor sitelibdir\=./.gem.20260910-2474-71glor install
|
|
15
|
+
/usr/bin/install -c -m 0755 cparse.so ./.gem.20260910-2474-71glor/racc
|
|
16
16
|
|
|
17
17
|
current directory: /home/runner/work/serverless/serverless/sdks/ruby/generated/vendor/bundle/ruby/3.2.0/gems/racc-1.8.1/ext/racc/cparse
|
|
18
|
-
make DESTDIR\= sitearchdir\=./.gem.
|
|
18
|
+
make DESTDIR\= sitearchdir\=./.gem.20260910-2474-71glor sitelibdir\=./.gem.20260910-2474-71glor clean
|