calendly 0.9.0 → 0.10.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e963f8454cbbe7258a4d48a39903e48dfeade06599a5b7082b1539f96683be3a
4
- data.tar.gz: 65e386995a0f23f6f860e031855d30198c654959b54ff8820e8dbf0524f570da
3
+ metadata.gz: ae5d3252e7d153727f903e0a7c0f041c30585a7e904be17c2b8d865a50293f12
4
+ data.tar.gz: 92f242524f6f306ac022c657da5b8534f47c807cdf363a491ababbd15c676e9a
5
5
  SHA512:
6
- metadata.gz: f62928cf0d2381f92c18f203e830df716b07608e973dab83c716f471ab14b10b631de844e06fa24df634df35b64cb42efb37a1011de897c235c7eb0aed90069d
7
- data.tar.gz: 533661d0e183c24efbd53124dcfabce96812d3e6aa794afb25a9716bfb0d093d1a89e81c2cac4b968e8404c260cebd5b22c7e946204fcde0b1bff0bf575348f4
6
+ metadata.gz: b18dc59b3195168adf0014994b3ece6e7854160a635b7c6203e8d6b0ffe36c04e8a5ffdb4375b87472474abfca8fec38358408f73d20f823e4a721662f444f66
7
+ data.tar.gz: ee9d7bbf7600668daf67aa6f59af873794ca0e6f409003de8f1a0b997ad974762dcd23dee4f3b94dcd3035c6c7ad284ac5bed62a80e3b6efa8a0949d5ee36666
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.10.0 - 2022-04-15
4
+
5
+ - supported a API `POST /data_compliance/deletion/invitees`. (#28)
6
+ - changed files:
7
+ - Client
8
+ - (Add method) delete_invitee_data
9
+
3
10
  ## 0.9.0 - 2022-04-14
4
11
 
5
12
  - supported no show APIs. (#45)
@@ -16,7 +23,7 @@
16
23
  - (Add method) mark_no_show
17
24
  - (Add method) unmark_no_show
18
25
  - (New) InviteeNoShow model
19
- - To simplify `require` statements changed `Model::ASSOCIATION` constant to class methods and removed unused lines.
26
+ - To simplify `require` statements, changed `Model::ASSOCIATION` constant to class methods and removed unused lines.
20
27
 
21
28
  ## 0.8.3 - 2022-03-08
22
29
 
@@ -331,6 +331,25 @@ module Calendly
331
331
  true
332
332
  end
333
333
 
334
+ #
335
+ # Delete Invitee Data
336
+ # To submit a request to remove invitee data from all previously booked events in your organization.
337
+ #
338
+ # @param [Array<String>] emails invitees' emails
339
+ # @return [true]
340
+ # @raise [Calendly::Error] if the emails arg is empty.
341
+ # @raise [Calendly::ApiError] if the api returns error code.
342
+ # @since 0.10.0
343
+ def delete_invitee_data(emails)
344
+ check_not_empty emails, 'emails'
345
+ request(
346
+ :post,
347
+ 'data_compliance/deletion/invitees',
348
+ body: {emails: emails}
349
+ )
350
+ true
351
+ end
352
+
334
353
  #
335
354
  # Returns information about a user's organization membership
336
355
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Calendly
4
- VERSION = '0.9.0'
4
+ VERSION = '0.10.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calendly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kenji Koshikawa
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-04-14 00:00:00.000000000 Z
11
+ date: 2022-04-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: oauth2
@@ -176,7 +176,7 @@ metadata:
176
176
  homepage_uri: https://github.com/koshilife/calendly-api-ruby-client
177
177
  source_code_uri: https://github.com/koshilife/calendly-api-ruby-client
178
178
  changelog_uri: https://github.com/koshilife/calendly-api-ruby-client/blob/master/CHANGELOG.md
179
- documentation_uri: https://www.rubydoc.info/gems/calendly/0.9.0
179
+ documentation_uri: https://www.rubydoc.info/gems/calendly/0.10.0
180
180
  post_install_message:
181
181
  rdoc_options: []
182
182
  require_paths: