stackone_client 0.2.20 → 0.2.21

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: 6924939a1ac2a3d0de77aa6131a37605fe39fd9d49c52830f07d4abd523d8df0
4
- data.tar.gz: 30129c1246064c50f6a7776f0de0a8a058cb049059285ac71a12a61486059b15
3
+ metadata.gz: 26ba3545d3ce1565f58b16533662bfd50db54de329e4286ba8020c0fca79d11b
4
+ data.tar.gz: 53a6b153ea0a485254e3bc14f9d010af67c2d99f9118abf68de95ddf98da95de
5
5
  SHA512:
6
- metadata.gz: 50f86bd5e853c69f49a260f6395d0e964a897a546781dd7dc5c815e389ad8b13e429bdfeef3a87751d8634938ab9b94b533ff05e877d230db1faf087cd28cf73
7
- data.tar.gz: b3c8f6813a19f4f9919e974c44c0e894f4617b38608662db4b7ad154d7262a6d37647af40b8a6e950a4e828473d9f1d910c245ca331008847e652d2e5766f462
6
+ metadata.gz: 0e17d32ed16e20aca61400f38a8b8729417885d69fa45552748f5e5bb27870f389be253e88d67199e2eed1208b2ad00959056113fd47a430779ed580414baa03
7
+ data.tar.gz: b9b5443064c9d4830c4f81bb579af864f1b90dcb6767ce4bfa15d37276019200f3a675decaf40e8d73c6fa7738ea45b776c15e61cad15be2e8bea41359a7e0dc
@@ -15,6 +15,8 @@ module StackOne
15
15
  field :id, ::String, { 'path_param': { 'field_name': 'id', 'style': 'simple', 'explode': false } }
16
16
  # The account identifier
17
17
  field :x_account_id, ::String, { 'header': { 'field_name': 'x-account-id', 'style': 'simple', 'explode': false } }
18
+ # The comma separated list of fields that will be expanded in the response
19
+ field :expand, T.nilable(::String), { 'query_param': { 'field_name': 'expand', 'style': 'form', 'explode': true } }
18
20
  # The comma separated list of fields that will be returned in the response (if empty, all fields are returned)
19
21
  field :fields_, T.nilable(::String), { 'query_param': { 'field_name': 'fields', 'style': 'form', 'explode': true } }
20
22
  # Query parameters that can be used to pass through parameters to the underlying provider request by surrounding them with 'proxy' key
@@ -23,10 +25,11 @@ module StackOne
23
25
  field :raw, T.nilable(T::Boolean), { 'query_param': { 'field_name': 'raw', 'style': 'form', 'explode': true } }
24
26
 
25
27
 
26
- sig { params(id: ::String, x_account_id: ::String, fields_: T.nilable(::String), proxy: T.nilable(T::Hash[Symbol, ::Object]), raw: T.nilable(T::Boolean)).void }
27
- def initialize(id: nil, x_account_id: nil, fields_: nil, proxy: nil, raw: nil)
28
+ sig { params(id: ::String, x_account_id: ::String, expand: T.nilable(::String), fields_: T.nilable(::String), proxy: T.nilable(T::Hash[Symbol, ::Object]), raw: T.nilable(T::Boolean)).void }
29
+ def initialize(id: nil, x_account_id: nil, expand: nil, fields_: nil, proxy: nil, raw: nil)
28
30
  @id = id
29
31
  @x_account_id = x_account_id
32
+ @expand = expand
30
33
  @fields_ = fields_
31
34
  @proxy = proxy
32
35
  @raw = raw
@@ -13,6 +13,8 @@ module StackOne
13
13
 
14
14
  # The account identifier
15
15
  field :x_account_id, ::String, { 'header': { 'field_name': 'x-account-id', 'style': 'simple', 'explode': false } }
16
+ # The comma separated list of fields that will be expanded in the response
17
+ field :expand, T.nilable(::String), { 'query_param': { 'field_name': 'expand', 'style': 'form', 'explode': true } }
16
18
  # The comma separated list of fields that will be returned in the response (if empty, all fields are returned)
17
19
  field :fields_, T.nilable(::String), { 'query_param': { 'field_name': 'fields', 'style': 'form', 'explode': true } }
18
20
  # Use a string with a date to only select results updated after that given date
@@ -35,9 +37,10 @@ module StackOne
35
37
  field :updated_after, T.nilable(::String), { 'query_param': { 'field_name': 'updated_after', 'style': 'form', 'explode': true } }
36
38
 
37
39
 
38
- sig { params(x_account_id: ::String, fields_: T.nilable(::String), filter_updated_after: T.nilable(::String), next_: T.nilable(::String), page: T.nilable(::String), page_size: T.nilable(::String), proxy: T.nilable(T::Hash[Symbol, ::Object]), raw: T.nilable(T::Boolean), updated_after: T.nilable(::String)).void }
39
- def initialize(x_account_id: nil, fields_: nil, filter_updated_after: nil, next_: nil, page: nil, page_size: nil, proxy: nil, raw: nil, updated_after: nil)
40
+ sig { params(x_account_id: ::String, expand: T.nilable(::String), fields_: T.nilable(::String), filter_updated_after: T.nilable(::String), next_: T.nilable(::String), page: T.nilable(::String), page_size: T.nilable(::String), proxy: T.nilable(T::Hash[Symbol, ::Object]), raw: T.nilable(T::Boolean), updated_after: T.nilable(::String)).void }
41
+ def initialize(x_account_id: nil, expand: nil, fields_: nil, filter_updated_after: nil, next_: nil, page: nil, page_size: nil, proxy: nil, raw: nil, updated_after: nil)
40
42
  @x_account_id = x_account_id
43
+ @expand = expand
41
44
  @fields_ = fields_
42
45
  @filter_updated_after = filter_updated_after
43
46
  @next_ = next_
@@ -16,6 +16,7 @@ module StackOne
16
16
  CRM = new('crm')
17
17
  IAM = new('iam')
18
18
  MARKETING = new('marketing')
19
+ LMS = new('lms')
19
20
  STACKONE = new('stackone')
20
21
  end
21
22
  end
@@ -16,6 +16,7 @@ module StackOne
16
16
  CRM = new('crm')
17
17
  IAM = new('iam')
18
18
  MARKETING = new('marketing')
19
+ LMS = new('lms')
19
20
  STACKONE = new('stackone')
20
21
  end
21
22
  end
@@ -16,6 +16,7 @@ module StackOne
16
16
  CRM = new('crm')
17
17
  IAM = new('iam')
18
18
  MARKETING = new('marketing')
19
+ LMS = new('lms')
19
20
  STACKONE = new('stackone')
20
21
  end
21
22
  end
@@ -16,6 +16,7 @@ module StackOne
16
16
  CRM = new('crm')
17
17
  IAM = new('iam')
18
18
  MARKETING = new('marketing')
19
+ LMS = new('lms')
19
20
  STACKONE = new('stackone')
20
21
  end
21
22
  end
@@ -15,6 +15,8 @@ module StackOne
15
15
  field :id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('id') } }
16
16
  # The name of the group
17
17
  field :name, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('name') } }
18
+ # The list of group owner ids of the given group
19
+ field :owner_ids, T.nilable(T::Array[::String]), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('owner_ids') } }
18
20
  # The list of parent group ids of the given group
19
21
  field :parent_ids, T.nilable(T::Array[::String]), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('parent_ids') } }
20
22
  # Provider's unique identifier
@@ -23,10 +25,11 @@ module StackOne
23
25
  field :type, T.nilable(::StackOne::Shared::HRISGroupType), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('type') } }
24
26
 
25
27
 
26
- sig { params(id: T.nilable(::String), name: T.nilable(::String), parent_ids: T.nilable(T::Array[::String]), remote_id: T.nilable(::String), type: T.nilable(::StackOne::Shared::HRISGroupType)).void }
27
- def initialize(id: nil, name: nil, parent_ids: nil, remote_id: nil, type: nil)
28
+ sig { params(id: T.nilable(::String), name: T.nilable(::String), owner_ids: T.nilable(T::Array[::String]), parent_ids: T.nilable(T::Array[::String]), remote_id: T.nilable(::String), type: T.nilable(::StackOne::Shared::HRISGroupType)).void }
29
+ def initialize(id: nil, name: nil, owner_ids: nil, parent_ids: nil, remote_id: nil, type: nil)
28
30
  @id = id
29
31
  @name = name
32
+ @owner_ids = owner_ids
30
33
  @parent_ids = parent_ids
31
34
  @remote_id = remote_id
32
35
  @type = type
@@ -16,6 +16,7 @@ module StackOne
16
16
  CRM = new('crm')
17
17
  IAM = new('iam')
18
18
  MARKETING = new('marketing')
19
+ LMS = new('lms')
19
20
  STACKONE = new('stackone')
20
21
  end
21
22
  end
@@ -38,9 +38,9 @@ module StackOne
38
38
  @security = security
39
39
  @language = 'ruby'
40
40
  @openapi_doc_version = '1.0.0'
41
- @sdk_version = '0.2.20'
42
- @gen_version = '2.326.3'
43
- @user_agent = 'speakeasy-sdk/ruby 0.2.20 2.326.3 1.0.0 stackone_client'
41
+ @sdk_version = '0.2.21'
42
+ @gen_version = '2.332.4'
43
+ @user_agent = 'speakeasy-sdk/ruby 0.2.21 2.332.4 1.0.0 stackone_client'
44
44
  end
45
45
 
46
46
  sig { returns([String, T::Hash[Symbol, String]]) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stackone_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.20
4
+ version: 0.2.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - StackOne
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-10 00:00:00.000000000 Z
11
+ date: 2024-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday