safetykit 0.33.0 → 0.35.0
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/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/safety_kit/models/data_create_upload_url_params.rb +30 -20
- data/lib/safety_kit/models/data_update_settings_params.rb +30 -20
- data/lib/safety_kit/version.rb +1 -1
- data/rbi/safety_kit/models/data_create_upload_url_params.rbi +85 -35
- data/rbi/safety_kit/models/data_update_settings_params.rbi +85 -35
- data/sig/safety_kit/models/data_create_upload_url_params.rbs +49 -29
- data/sig/safety_kit/models/data_update_settings_params.rbs +49 -29
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 54f819aca3269f4f1499fd7b10867f686bd8354c5fbf43fbd9a9f7545b27f7b2
|
|
4
|
+
data.tar.gz: 6fbc567df4638a474141eabf05a660e3f80f2b9158991ab3d215ad3c55435272
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec3b45060a879bfebd9f88c8236b93ca3766a60a088ca8e58ae3c5fba39a637df0133d45ba464eceb4214b6f19d885859e568830232a5b7df7418a47a2b2b2df
|
|
7
|
+
data.tar.gz: 9418ef5b149ab7188a60a840361ae24f4889c6154434d86c54309b56138d4b911d3d6167cee97825283fcdd777b85ffcb271d0b44813a7d2a7c9b61f9d7fbf4b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.35.0 (2026-06-25)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.34.0...v0.35.0](https://github.com/GetSafetyKit/safetykit-ruby/compare/v0.34.0...v0.35.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([9643109](https://github.com/GetSafetyKit/safetykit-ruby/commit/9643109379c410fb22d5f5c6603d33da3f20af24))
|
|
10
|
+
|
|
11
|
+
## 0.34.0 (2026-06-25)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v0.33.0...v0.34.0](https://github.com/GetSafetyKit/safetykit-ruby/compare/v0.33.0...v0.34.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([153a696](https://github.com/GetSafetyKit/safetykit-ruby/commit/153a696786a00f421915febbb343888143fe3a45))
|
|
18
|
+
|
|
3
19
|
## 0.33.0 (2026-06-24)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v0.32.0...v0.33.0](https://github.com/GetSafetyKit/safetykit-ruby/compare/v0.32.0...v0.33.0)
|
data/README.md
CHANGED
|
@@ -106,30 +106,30 @@ module SafetyKit
|
|
|
106
106
|
|
|
107
107
|
# @see SafetyKit::Models::DataCreateUploadURLParams::Schema#display_hint
|
|
108
108
|
class DisplayHint < SafetyKit::Internal::Type::BaseModel
|
|
109
|
+
# @!attribute hidden
|
|
110
|
+
# Hide this field from default UI display.
|
|
111
|
+
#
|
|
112
|
+
# @return [Boolean, nil]
|
|
113
|
+
optional :hidden, SafetyKit::Internal::Type::Boolean
|
|
114
|
+
|
|
109
115
|
# @!attribute name
|
|
110
116
|
# Display label to show for this field in the UI
|
|
111
117
|
#
|
|
112
118
|
# @return [String, nil]
|
|
113
119
|
optional :name, String
|
|
114
120
|
|
|
115
|
-
# @!attribute order
|
|
116
|
-
# Display ordering for this field. Use 0 to hide the field from list views.
|
|
117
|
-
#
|
|
118
|
-
# @return [Float, nil]
|
|
119
|
-
optional :order, Float
|
|
120
|
-
|
|
121
121
|
# @!attribute type
|
|
122
122
|
# The display hint type
|
|
123
123
|
#
|
|
124
124
|
# @return [Symbol, SafetyKit::Models::DataCreateUploadURLParams::Schema::DisplayHint::Type, nil]
|
|
125
125
|
optional :type, enum: -> { SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type }
|
|
126
126
|
|
|
127
|
-
# @!method initialize(
|
|
127
|
+
# @!method initialize(hidden: nil, name: nil, type: nil)
|
|
128
128
|
# Display hint for UI rendering of this field
|
|
129
129
|
#
|
|
130
|
-
# @param
|
|
130
|
+
# @param hidden [Boolean] Hide this field from default UI display.
|
|
131
131
|
#
|
|
132
|
-
# @param
|
|
132
|
+
# @param name [String] Display label to show for this field in the UI
|
|
133
133
|
#
|
|
134
134
|
# @param type [Symbol, SafetyKit::Models::DataCreateUploadURLParams::Schema::DisplayHint::Type] The display hint type
|
|
135
135
|
|
|
@@ -141,18 +141,28 @@ module SafetyKit
|
|
|
141
141
|
|
|
142
142
|
TITLE = :title
|
|
143
143
|
SUBTITLE = :subtitle
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
144
|
+
CATEGORY = :category
|
|
145
|
+
IDENTIFIER = :identifier
|
|
146
|
+
CANONICAL_URL = :canonical_url
|
|
147
|
+
STATUS = :status
|
|
148
|
+
PRIMARY_TAG_SET = :primary_tag_set
|
|
149
|
+
TAG_SET = :tag_set
|
|
150
|
+
TIMESTAMP = :timestamp
|
|
151
|
+
RATING = :rating
|
|
152
|
+
SUMMARY = :summary
|
|
153
|
+
PROFILE_IMAGE = :profile_image
|
|
154
|
+
PRIMARY_IMAGE = :primary_image
|
|
155
|
+
IMAGE_SET = :image_set
|
|
156
|
+
VIDEO_SET = :video_set
|
|
157
|
+
AUDIO_SET = :audio_set
|
|
158
|
+
BODY = :body
|
|
159
|
+
THREAD = :thread
|
|
160
|
+
MESSAGE = :message
|
|
161
|
+
PROFILE = :profile
|
|
162
|
+
MONEY = :money
|
|
148
163
|
LOCATION = :location
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
MARKDOWN = :markdown
|
|
152
|
-
HTML = :html
|
|
153
|
-
CARD = :card
|
|
154
|
-
CHAT_THREAD = :chat_thread
|
|
155
|
-
TWO_PERSON_CHAT = :two_person_chat
|
|
164
|
+
ATTRIBUTE_GROUP = :attribute_group
|
|
165
|
+
ATTRIBUTE = :attribute
|
|
156
166
|
|
|
157
167
|
# @!method self.values
|
|
158
168
|
# @return [Array<Symbol>]
|
|
@@ -106,30 +106,30 @@ module SafetyKit
|
|
|
106
106
|
|
|
107
107
|
# @see SafetyKit::Models::DataUpdateSettingsParams::Schema#display_hint
|
|
108
108
|
class DisplayHint < SafetyKit::Internal::Type::BaseModel
|
|
109
|
+
# @!attribute hidden
|
|
110
|
+
# Hide this field from default UI display.
|
|
111
|
+
#
|
|
112
|
+
# @return [Boolean, nil]
|
|
113
|
+
optional :hidden, SafetyKit::Internal::Type::Boolean
|
|
114
|
+
|
|
109
115
|
# @!attribute name
|
|
110
116
|
# Display label to show for this field in the UI
|
|
111
117
|
#
|
|
112
118
|
# @return [String, nil]
|
|
113
119
|
optional :name, String
|
|
114
120
|
|
|
115
|
-
# @!attribute order
|
|
116
|
-
# Display ordering for this field. Use 0 to hide the field from list views.
|
|
117
|
-
#
|
|
118
|
-
# @return [Float, nil]
|
|
119
|
-
optional :order, Float
|
|
120
|
-
|
|
121
121
|
# @!attribute type
|
|
122
122
|
# The display hint type
|
|
123
123
|
#
|
|
124
124
|
# @return [Symbol, SafetyKit::Models::DataUpdateSettingsParams::Schema::DisplayHint::Type, nil]
|
|
125
125
|
optional :type, enum: -> { SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type }
|
|
126
126
|
|
|
127
|
-
# @!method initialize(
|
|
127
|
+
# @!method initialize(hidden: nil, name: nil, type: nil)
|
|
128
128
|
# Display hint for UI rendering of this field
|
|
129
129
|
#
|
|
130
|
-
# @param
|
|
130
|
+
# @param hidden [Boolean] Hide this field from default UI display.
|
|
131
131
|
#
|
|
132
|
-
# @param
|
|
132
|
+
# @param name [String] Display label to show for this field in the UI
|
|
133
133
|
#
|
|
134
134
|
# @param type [Symbol, SafetyKit::Models::DataUpdateSettingsParams::Schema::DisplayHint::Type] The display hint type
|
|
135
135
|
|
|
@@ -141,18 +141,28 @@ module SafetyKit
|
|
|
141
141
|
|
|
142
142
|
TITLE = :title
|
|
143
143
|
SUBTITLE = :subtitle
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
144
|
+
CATEGORY = :category
|
|
145
|
+
IDENTIFIER = :identifier
|
|
146
|
+
CANONICAL_URL = :canonical_url
|
|
147
|
+
STATUS = :status
|
|
148
|
+
PRIMARY_TAG_SET = :primary_tag_set
|
|
149
|
+
TAG_SET = :tag_set
|
|
150
|
+
TIMESTAMP = :timestamp
|
|
151
|
+
RATING = :rating
|
|
152
|
+
SUMMARY = :summary
|
|
153
|
+
PROFILE_IMAGE = :profile_image
|
|
154
|
+
PRIMARY_IMAGE = :primary_image
|
|
155
|
+
IMAGE_SET = :image_set
|
|
156
|
+
VIDEO_SET = :video_set
|
|
157
|
+
AUDIO_SET = :audio_set
|
|
158
|
+
BODY = :body
|
|
159
|
+
THREAD = :thread
|
|
160
|
+
MESSAGE = :message
|
|
161
|
+
PROFILE = :profile
|
|
162
|
+
MONEY = :money
|
|
148
163
|
LOCATION = :location
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
MARKDOWN = :markdown
|
|
152
|
-
HTML = :html
|
|
153
|
-
CARD = :card
|
|
154
|
-
CHAT_THREAD = :chat_thread
|
|
155
|
-
TWO_PERSON_CHAT = :two_person_chat
|
|
164
|
+
ATTRIBUTE_GROUP = :attribute_group
|
|
165
|
+
ATTRIBUTE = :attribute
|
|
156
166
|
|
|
157
167
|
# @!method self.values
|
|
158
168
|
# @return [Array<Symbol>]
|
data/lib/safety_kit/version.rb
CHANGED
|
@@ -278,6 +278,13 @@ module SafetyKit
|
|
|
278
278
|
)
|
|
279
279
|
end
|
|
280
280
|
|
|
281
|
+
# Hide this field from default UI display.
|
|
282
|
+
sig { returns(T.nilable(T::Boolean)) }
|
|
283
|
+
attr_reader :hidden
|
|
284
|
+
|
|
285
|
+
sig { params(hidden: T::Boolean).void }
|
|
286
|
+
attr_writer :hidden
|
|
287
|
+
|
|
281
288
|
# Display label to show for this field in the UI
|
|
282
289
|
sig { returns(T.nilable(String)) }
|
|
283
290
|
attr_reader :name
|
|
@@ -285,13 +292,6 @@ module SafetyKit
|
|
|
285
292
|
sig { params(name: String).void }
|
|
286
293
|
attr_writer :name
|
|
287
294
|
|
|
288
|
-
# Display ordering for this field. Use 0 to hide the field from list views.
|
|
289
|
-
sig { returns(T.nilable(Float)) }
|
|
290
|
-
attr_reader :order
|
|
291
|
-
|
|
292
|
-
sig { params(order: Float).void }
|
|
293
|
-
attr_writer :order
|
|
294
|
-
|
|
295
295
|
# The display hint type
|
|
296
296
|
sig do
|
|
297
297
|
returns(
|
|
@@ -313,17 +313,17 @@ module SafetyKit
|
|
|
313
313
|
# Display hint for UI rendering of this field
|
|
314
314
|
sig do
|
|
315
315
|
params(
|
|
316
|
+
hidden: T::Boolean,
|
|
316
317
|
name: String,
|
|
317
|
-
order: Float,
|
|
318
318
|
type:
|
|
319
319
|
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::OrSymbol
|
|
320
320
|
).returns(T.attached_class)
|
|
321
321
|
end
|
|
322
322
|
def self.new(
|
|
323
|
+
# Hide this field from default UI display.
|
|
324
|
+
hidden: nil,
|
|
323
325
|
# Display label to show for this field in the UI
|
|
324
326
|
name: nil,
|
|
325
|
-
# Display ordering for this field. Use 0 to hide the field from list views.
|
|
326
|
-
order: nil,
|
|
327
327
|
# The display hint type
|
|
328
328
|
type: nil
|
|
329
329
|
)
|
|
@@ -332,8 +332,8 @@ module SafetyKit
|
|
|
332
332
|
sig do
|
|
333
333
|
override.returns(
|
|
334
334
|
{
|
|
335
|
+
hidden: T::Boolean,
|
|
335
336
|
name: String,
|
|
336
|
-
order: Float,
|
|
337
337
|
type:
|
|
338
338
|
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::OrSymbol
|
|
339
339
|
}
|
|
@@ -365,64 +365,114 @@ module SafetyKit
|
|
|
365
365
|
:subtitle,
|
|
366
366
|
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
367
367
|
)
|
|
368
|
-
|
|
368
|
+
CATEGORY =
|
|
369
369
|
T.let(
|
|
370
|
-
:
|
|
370
|
+
:category,
|
|
371
371
|
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
372
372
|
)
|
|
373
|
-
|
|
373
|
+
IDENTIFIER =
|
|
374
374
|
T.let(
|
|
375
|
-
:
|
|
375
|
+
:identifier,
|
|
376
376
|
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
377
377
|
)
|
|
378
|
-
|
|
378
|
+
CANONICAL_URL =
|
|
379
379
|
T.let(
|
|
380
|
-
:
|
|
380
|
+
:canonical_url,
|
|
381
381
|
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
382
382
|
)
|
|
383
|
-
|
|
383
|
+
STATUS =
|
|
384
384
|
T.let(
|
|
385
|
-
:
|
|
385
|
+
:status,
|
|
386
386
|
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
387
387
|
)
|
|
388
|
-
|
|
388
|
+
PRIMARY_TAG_SET =
|
|
389
389
|
T.let(
|
|
390
|
-
:
|
|
390
|
+
:primary_tag_set,
|
|
391
|
+
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
392
|
+
)
|
|
393
|
+
TAG_SET =
|
|
394
|
+
T.let(
|
|
395
|
+
:tag_set,
|
|
396
|
+
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
397
|
+
)
|
|
398
|
+
TIMESTAMP =
|
|
399
|
+
T.let(
|
|
400
|
+
:timestamp,
|
|
401
|
+
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
402
|
+
)
|
|
403
|
+
RATING =
|
|
404
|
+
T.let(
|
|
405
|
+
:rating,
|
|
406
|
+
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
407
|
+
)
|
|
408
|
+
SUMMARY =
|
|
409
|
+
T.let(
|
|
410
|
+
:summary,
|
|
411
|
+
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
412
|
+
)
|
|
413
|
+
PROFILE_IMAGE =
|
|
414
|
+
T.let(
|
|
415
|
+
:profile_image,
|
|
416
|
+
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
417
|
+
)
|
|
418
|
+
PRIMARY_IMAGE =
|
|
419
|
+
T.let(
|
|
420
|
+
:primary_image,
|
|
391
421
|
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
392
422
|
)
|
|
393
|
-
|
|
423
|
+
IMAGE_SET =
|
|
394
424
|
T.let(
|
|
395
|
-
:
|
|
425
|
+
:image_set,
|
|
396
426
|
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
397
427
|
)
|
|
398
|
-
|
|
428
|
+
VIDEO_SET =
|
|
399
429
|
T.let(
|
|
400
|
-
:
|
|
430
|
+
:video_set,
|
|
401
431
|
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
402
432
|
)
|
|
403
|
-
|
|
433
|
+
AUDIO_SET =
|
|
404
434
|
T.let(
|
|
405
|
-
:
|
|
435
|
+
:audio_set,
|
|
406
436
|
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
407
437
|
)
|
|
408
|
-
|
|
438
|
+
BODY =
|
|
409
439
|
T.let(
|
|
410
|
-
:
|
|
440
|
+
:body,
|
|
411
441
|
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
412
442
|
)
|
|
413
|
-
|
|
443
|
+
THREAD =
|
|
414
444
|
T.let(
|
|
415
|
-
:
|
|
445
|
+
:thread,
|
|
446
|
+
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
447
|
+
)
|
|
448
|
+
MESSAGE =
|
|
449
|
+
T.let(
|
|
450
|
+
:message,
|
|
451
|
+
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
452
|
+
)
|
|
453
|
+
PROFILE =
|
|
454
|
+
T.let(
|
|
455
|
+
:profile,
|
|
456
|
+
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
457
|
+
)
|
|
458
|
+
MONEY =
|
|
459
|
+
T.let(
|
|
460
|
+
:money,
|
|
461
|
+
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
462
|
+
)
|
|
463
|
+
LOCATION =
|
|
464
|
+
T.let(
|
|
465
|
+
:location,
|
|
416
466
|
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
417
467
|
)
|
|
418
|
-
|
|
468
|
+
ATTRIBUTE_GROUP =
|
|
419
469
|
T.let(
|
|
420
|
-
:
|
|
470
|
+
:attribute_group,
|
|
421
471
|
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
422
472
|
)
|
|
423
|
-
|
|
473
|
+
ATTRIBUTE =
|
|
424
474
|
T.let(
|
|
425
|
-
:
|
|
475
|
+
:attribute,
|
|
426
476
|
SafetyKit::DataCreateUploadURLParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
427
477
|
)
|
|
428
478
|
|
|
@@ -263,6 +263,13 @@ module SafetyKit
|
|
|
263
263
|
)
|
|
264
264
|
end
|
|
265
265
|
|
|
266
|
+
# Hide this field from default UI display.
|
|
267
|
+
sig { returns(T.nilable(T::Boolean)) }
|
|
268
|
+
attr_reader :hidden
|
|
269
|
+
|
|
270
|
+
sig { params(hidden: T::Boolean).void }
|
|
271
|
+
attr_writer :hidden
|
|
272
|
+
|
|
266
273
|
# Display label to show for this field in the UI
|
|
267
274
|
sig { returns(T.nilable(String)) }
|
|
268
275
|
attr_reader :name
|
|
@@ -270,13 +277,6 @@ module SafetyKit
|
|
|
270
277
|
sig { params(name: String).void }
|
|
271
278
|
attr_writer :name
|
|
272
279
|
|
|
273
|
-
# Display ordering for this field. Use 0 to hide the field from list views.
|
|
274
|
-
sig { returns(T.nilable(Float)) }
|
|
275
|
-
attr_reader :order
|
|
276
|
-
|
|
277
|
-
sig { params(order: Float).void }
|
|
278
|
-
attr_writer :order
|
|
279
|
-
|
|
280
280
|
# The display hint type
|
|
281
281
|
sig do
|
|
282
282
|
returns(
|
|
@@ -298,17 +298,17 @@ module SafetyKit
|
|
|
298
298
|
# Display hint for UI rendering of this field
|
|
299
299
|
sig do
|
|
300
300
|
params(
|
|
301
|
+
hidden: T::Boolean,
|
|
301
302
|
name: String,
|
|
302
|
-
order: Float,
|
|
303
303
|
type:
|
|
304
304
|
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::OrSymbol
|
|
305
305
|
).returns(T.attached_class)
|
|
306
306
|
end
|
|
307
307
|
def self.new(
|
|
308
|
+
# Hide this field from default UI display.
|
|
309
|
+
hidden: nil,
|
|
308
310
|
# Display label to show for this field in the UI
|
|
309
311
|
name: nil,
|
|
310
|
-
# Display ordering for this field. Use 0 to hide the field from list views.
|
|
311
|
-
order: nil,
|
|
312
312
|
# The display hint type
|
|
313
313
|
type: nil
|
|
314
314
|
)
|
|
@@ -317,8 +317,8 @@ module SafetyKit
|
|
|
317
317
|
sig do
|
|
318
318
|
override.returns(
|
|
319
319
|
{
|
|
320
|
+
hidden: T::Boolean,
|
|
320
321
|
name: String,
|
|
321
|
-
order: Float,
|
|
322
322
|
type:
|
|
323
323
|
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::OrSymbol
|
|
324
324
|
}
|
|
@@ -350,64 +350,114 @@ module SafetyKit
|
|
|
350
350
|
:subtitle,
|
|
351
351
|
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
352
352
|
)
|
|
353
|
-
|
|
353
|
+
CATEGORY =
|
|
354
354
|
T.let(
|
|
355
|
-
:
|
|
355
|
+
:category,
|
|
356
356
|
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
357
357
|
)
|
|
358
|
-
|
|
358
|
+
IDENTIFIER =
|
|
359
359
|
T.let(
|
|
360
|
-
:
|
|
360
|
+
:identifier,
|
|
361
361
|
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
362
362
|
)
|
|
363
|
-
|
|
363
|
+
CANONICAL_URL =
|
|
364
364
|
T.let(
|
|
365
|
-
:
|
|
365
|
+
:canonical_url,
|
|
366
366
|
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
367
367
|
)
|
|
368
|
-
|
|
368
|
+
STATUS =
|
|
369
369
|
T.let(
|
|
370
|
-
:
|
|
370
|
+
:status,
|
|
371
371
|
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
372
372
|
)
|
|
373
|
-
|
|
373
|
+
PRIMARY_TAG_SET =
|
|
374
374
|
T.let(
|
|
375
|
-
:
|
|
375
|
+
:primary_tag_set,
|
|
376
|
+
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
377
|
+
)
|
|
378
|
+
TAG_SET =
|
|
379
|
+
T.let(
|
|
380
|
+
:tag_set,
|
|
381
|
+
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
382
|
+
)
|
|
383
|
+
TIMESTAMP =
|
|
384
|
+
T.let(
|
|
385
|
+
:timestamp,
|
|
386
|
+
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
387
|
+
)
|
|
388
|
+
RATING =
|
|
389
|
+
T.let(
|
|
390
|
+
:rating,
|
|
391
|
+
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
392
|
+
)
|
|
393
|
+
SUMMARY =
|
|
394
|
+
T.let(
|
|
395
|
+
:summary,
|
|
396
|
+
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
397
|
+
)
|
|
398
|
+
PROFILE_IMAGE =
|
|
399
|
+
T.let(
|
|
400
|
+
:profile_image,
|
|
401
|
+
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
402
|
+
)
|
|
403
|
+
PRIMARY_IMAGE =
|
|
404
|
+
T.let(
|
|
405
|
+
:primary_image,
|
|
376
406
|
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
377
407
|
)
|
|
378
|
-
|
|
408
|
+
IMAGE_SET =
|
|
379
409
|
T.let(
|
|
380
|
-
:
|
|
410
|
+
:image_set,
|
|
381
411
|
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
382
412
|
)
|
|
383
|
-
|
|
413
|
+
VIDEO_SET =
|
|
384
414
|
T.let(
|
|
385
|
-
:
|
|
415
|
+
:video_set,
|
|
386
416
|
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
387
417
|
)
|
|
388
|
-
|
|
418
|
+
AUDIO_SET =
|
|
389
419
|
T.let(
|
|
390
|
-
:
|
|
420
|
+
:audio_set,
|
|
391
421
|
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
392
422
|
)
|
|
393
|
-
|
|
423
|
+
BODY =
|
|
394
424
|
T.let(
|
|
395
|
-
:
|
|
425
|
+
:body,
|
|
396
426
|
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
397
427
|
)
|
|
398
|
-
|
|
428
|
+
THREAD =
|
|
399
429
|
T.let(
|
|
400
|
-
:
|
|
430
|
+
:thread,
|
|
431
|
+
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
432
|
+
)
|
|
433
|
+
MESSAGE =
|
|
434
|
+
T.let(
|
|
435
|
+
:message,
|
|
436
|
+
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
437
|
+
)
|
|
438
|
+
PROFILE =
|
|
439
|
+
T.let(
|
|
440
|
+
:profile,
|
|
441
|
+
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
442
|
+
)
|
|
443
|
+
MONEY =
|
|
444
|
+
T.let(
|
|
445
|
+
:money,
|
|
446
|
+
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
447
|
+
)
|
|
448
|
+
LOCATION =
|
|
449
|
+
T.let(
|
|
450
|
+
:location,
|
|
401
451
|
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
402
452
|
)
|
|
403
|
-
|
|
453
|
+
ATTRIBUTE_GROUP =
|
|
404
454
|
T.let(
|
|
405
|
-
:
|
|
455
|
+
:attribute_group,
|
|
406
456
|
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
407
457
|
)
|
|
408
|
-
|
|
458
|
+
ATTRIBUTE =
|
|
409
459
|
T.let(
|
|
410
|
-
:
|
|
460
|
+
:attribute,
|
|
411
461
|
SafetyKit::DataUpdateSettingsParams::Schema::DisplayHint::Type::TaggedSymbol
|
|
412
462
|
)
|
|
413
463
|
|
|
@@ -108,19 +108,19 @@ module SafetyKit
|
|
|
108
108
|
|
|
109
109
|
type display_hint =
|
|
110
110
|
{
|
|
111
|
+
hidden: bool,
|
|
111
112
|
name: String,
|
|
112
|
-
order: Float,
|
|
113
113
|
type: SafetyKit::Models::DataCreateUploadURLParams::Schema::DisplayHint::type_
|
|
114
114
|
}
|
|
115
115
|
|
|
116
116
|
class DisplayHint < SafetyKit::Internal::Type::BaseModel
|
|
117
|
-
attr_reader
|
|
117
|
+
attr_reader hidden: bool?
|
|
118
118
|
|
|
119
|
-
def
|
|
119
|
+
def hidden=: (bool) -> bool
|
|
120
120
|
|
|
121
|
-
attr_reader
|
|
121
|
+
attr_reader name: String?
|
|
122
122
|
|
|
123
|
-
def
|
|
123
|
+
def name=: (String) -> String
|
|
124
124
|
|
|
125
125
|
attr_reader type: SafetyKit::Models::DataCreateUploadURLParams::Schema::DisplayHint::type_?
|
|
126
126
|
|
|
@@ -129,50 +129,70 @@ module SafetyKit
|
|
|
129
129
|
) -> SafetyKit::Models::DataCreateUploadURLParams::Schema::DisplayHint::type_
|
|
130
130
|
|
|
131
131
|
def initialize: (
|
|
132
|
+
?hidden: bool,
|
|
132
133
|
?name: String,
|
|
133
|
-
?order: Float,
|
|
134
134
|
?type: SafetyKit::Models::DataCreateUploadURLParams::Schema::DisplayHint::type_
|
|
135
135
|
) -> void
|
|
136
136
|
|
|
137
137
|
def to_hash: -> {
|
|
138
|
+
hidden: bool,
|
|
138
139
|
name: String,
|
|
139
|
-
order: Float,
|
|
140
140
|
type: SafetyKit::Models::DataCreateUploadURLParams::Schema::DisplayHint::type_
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
type type_ =
|
|
144
144
|
:title
|
|
145
145
|
| :subtitle
|
|
146
|
-
| :
|
|
147
|
-
| :
|
|
148
|
-
| :
|
|
149
|
-
| :
|
|
146
|
+
| :category
|
|
147
|
+
| :identifier
|
|
148
|
+
| :canonical_url
|
|
149
|
+
| :status
|
|
150
|
+
| :primary_tag_set
|
|
151
|
+
| :tag_set
|
|
152
|
+
| :timestamp
|
|
153
|
+
| :rating
|
|
154
|
+
| :summary
|
|
155
|
+
| :profile_image
|
|
156
|
+
| :primary_image
|
|
157
|
+
| :image_set
|
|
158
|
+
| :video_set
|
|
159
|
+
| :audio_set
|
|
160
|
+
| :body
|
|
161
|
+
| :thread
|
|
162
|
+
| :message
|
|
163
|
+
| :profile
|
|
164
|
+
| :money
|
|
150
165
|
| :location
|
|
151
|
-
| :
|
|
152
|
-
| :
|
|
153
|
-
| :markdown
|
|
154
|
-
| :html
|
|
155
|
-
| :card
|
|
156
|
-
| :chat_thread
|
|
157
|
-
| :two_person_chat
|
|
166
|
+
| :attribute_group
|
|
167
|
+
| :attribute
|
|
158
168
|
|
|
159
169
|
module Type
|
|
160
170
|
extend SafetyKit::Internal::Type::Enum
|
|
161
171
|
|
|
162
172
|
TITLE: :title
|
|
163
173
|
SUBTITLE: :subtitle
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
174
|
+
CATEGORY: :category
|
|
175
|
+
IDENTIFIER: :identifier
|
|
176
|
+
CANONICAL_URL: :canonical_url
|
|
177
|
+
STATUS: :status
|
|
178
|
+
PRIMARY_TAG_SET: :primary_tag_set
|
|
179
|
+
TAG_SET: :tag_set
|
|
180
|
+
TIMESTAMP: :timestamp
|
|
181
|
+
RATING: :rating
|
|
182
|
+
SUMMARY: :summary
|
|
183
|
+
PROFILE_IMAGE: :profile_image
|
|
184
|
+
PRIMARY_IMAGE: :primary_image
|
|
185
|
+
IMAGE_SET: :image_set
|
|
186
|
+
VIDEO_SET: :video_set
|
|
187
|
+
AUDIO_SET: :audio_set
|
|
188
|
+
BODY: :body
|
|
189
|
+
THREAD: :thread
|
|
190
|
+
MESSAGE: :message
|
|
191
|
+
PROFILE: :profile
|
|
192
|
+
MONEY: :money
|
|
168
193
|
LOCATION: :location
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
MARKDOWN: :markdown
|
|
172
|
-
HTML: :html
|
|
173
|
-
CARD: :card
|
|
174
|
-
CHAT_THREAD: :chat_thread
|
|
175
|
-
TWO_PERSON_CHAT: :two_person_chat
|
|
194
|
+
ATTRIBUTE_GROUP: :attribute_group
|
|
195
|
+
ATTRIBUTE: :attribute
|
|
176
196
|
|
|
177
197
|
def self?.values: -> ::Array[SafetyKit::Models::DataCreateUploadURLParams::Schema::DisplayHint::type_]
|
|
178
198
|
end
|
|
@@ -104,19 +104,19 @@ module SafetyKit
|
|
|
104
104
|
|
|
105
105
|
type display_hint =
|
|
106
106
|
{
|
|
107
|
+
hidden: bool,
|
|
107
108
|
name: String,
|
|
108
|
-
order: Float,
|
|
109
109
|
type: SafetyKit::Models::DataUpdateSettingsParams::Schema::DisplayHint::type_
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
class DisplayHint < SafetyKit::Internal::Type::BaseModel
|
|
113
|
-
attr_reader
|
|
113
|
+
attr_reader hidden: bool?
|
|
114
114
|
|
|
115
|
-
def
|
|
115
|
+
def hidden=: (bool) -> bool
|
|
116
116
|
|
|
117
|
-
attr_reader
|
|
117
|
+
attr_reader name: String?
|
|
118
118
|
|
|
119
|
-
def
|
|
119
|
+
def name=: (String) -> String
|
|
120
120
|
|
|
121
121
|
attr_reader type: SafetyKit::Models::DataUpdateSettingsParams::Schema::DisplayHint::type_?
|
|
122
122
|
|
|
@@ -125,50 +125,70 @@ module SafetyKit
|
|
|
125
125
|
) -> SafetyKit::Models::DataUpdateSettingsParams::Schema::DisplayHint::type_
|
|
126
126
|
|
|
127
127
|
def initialize: (
|
|
128
|
+
?hidden: bool,
|
|
128
129
|
?name: String,
|
|
129
|
-
?order: Float,
|
|
130
130
|
?type: SafetyKit::Models::DataUpdateSettingsParams::Schema::DisplayHint::type_
|
|
131
131
|
) -> void
|
|
132
132
|
|
|
133
133
|
def to_hash: -> {
|
|
134
|
+
hidden: bool,
|
|
134
135
|
name: String,
|
|
135
|
-
order: Float,
|
|
136
136
|
type: SafetyKit::Models::DataUpdateSettingsParams::Schema::DisplayHint::type_
|
|
137
137
|
}
|
|
138
138
|
|
|
139
139
|
type type_ =
|
|
140
140
|
:title
|
|
141
141
|
| :subtitle
|
|
142
|
-
| :
|
|
143
|
-
| :
|
|
144
|
-
| :
|
|
145
|
-
| :
|
|
142
|
+
| :category
|
|
143
|
+
| :identifier
|
|
144
|
+
| :canonical_url
|
|
145
|
+
| :status
|
|
146
|
+
| :primary_tag_set
|
|
147
|
+
| :tag_set
|
|
148
|
+
| :timestamp
|
|
149
|
+
| :rating
|
|
150
|
+
| :summary
|
|
151
|
+
| :profile_image
|
|
152
|
+
| :primary_image
|
|
153
|
+
| :image_set
|
|
154
|
+
| :video_set
|
|
155
|
+
| :audio_set
|
|
156
|
+
| :body
|
|
157
|
+
| :thread
|
|
158
|
+
| :message
|
|
159
|
+
| :profile
|
|
160
|
+
| :money
|
|
146
161
|
| :location
|
|
147
|
-
| :
|
|
148
|
-
| :
|
|
149
|
-
| :markdown
|
|
150
|
-
| :html
|
|
151
|
-
| :card
|
|
152
|
-
| :chat_thread
|
|
153
|
-
| :two_person_chat
|
|
162
|
+
| :attribute_group
|
|
163
|
+
| :attribute
|
|
154
164
|
|
|
155
165
|
module Type
|
|
156
166
|
extend SafetyKit::Internal::Type::Enum
|
|
157
167
|
|
|
158
168
|
TITLE: :title
|
|
159
169
|
SUBTITLE: :subtitle
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
170
|
+
CATEGORY: :category
|
|
171
|
+
IDENTIFIER: :identifier
|
|
172
|
+
CANONICAL_URL: :canonical_url
|
|
173
|
+
STATUS: :status
|
|
174
|
+
PRIMARY_TAG_SET: :primary_tag_set
|
|
175
|
+
TAG_SET: :tag_set
|
|
176
|
+
TIMESTAMP: :timestamp
|
|
177
|
+
RATING: :rating
|
|
178
|
+
SUMMARY: :summary
|
|
179
|
+
PROFILE_IMAGE: :profile_image
|
|
180
|
+
PRIMARY_IMAGE: :primary_image
|
|
181
|
+
IMAGE_SET: :image_set
|
|
182
|
+
VIDEO_SET: :video_set
|
|
183
|
+
AUDIO_SET: :audio_set
|
|
184
|
+
BODY: :body
|
|
185
|
+
THREAD: :thread
|
|
186
|
+
MESSAGE: :message
|
|
187
|
+
PROFILE: :profile
|
|
188
|
+
MONEY: :money
|
|
164
189
|
LOCATION: :location
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
MARKDOWN: :markdown
|
|
168
|
-
HTML: :html
|
|
169
|
-
CARD: :card
|
|
170
|
-
CHAT_THREAD: :chat_thread
|
|
171
|
-
TWO_PERSON_CHAT: :two_person_chat
|
|
190
|
+
ATTRIBUTE_GROUP: :attribute_group
|
|
191
|
+
ATTRIBUTE: :attribute
|
|
172
192
|
|
|
173
193
|
def self?.values: -> ::Array[SafetyKit::Models::DataUpdateSettingsParams::Schema::DisplayHint::type_]
|
|
174
194
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: safetykit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.35.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Safetykit
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|