yousign_client 1.0.0 → 1.0.1
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 +14 -8
- data/config.json +2 -2
- data/docs/AuthenticationsApi.md +60 -45
- data/docs/CheckDocumentsApi.md +40 -30
- data/docs/ConsentProcessesApi.md +80 -57
- data/docs/FileObjectsApi.md +40 -30
- data/docs/FilesApi.md +40 -30
- data/docs/InlineObject.md +17 -0
- data/docs/InlineObject1.md +19 -0
- data/docs/InlineObject2.md +19 -0
- data/docs/MembersApi.md +50 -36
- data/docs/OperationsApi.md +20 -15
- data/docs/OrganizationsApi.md +11 -10
- data/docs/ProceduresApi.md +90 -66
- data/docs/ServerStampsApi.md +20 -15
- data/docs/SignatureUIsApi.md +101 -82
- data/docs/UserGroupsApi.md +21 -16
- data/docs/UsersApi.md +51 -40
- data/docs/WorkspacesApi.md +11 -10
- data/lib/yousign_client/api/authentications_api.rb +24 -87
- data/lib/yousign_client/api/check_documents_api.rb +16 -58
- data/lib/yousign_client/api/consent_processes_api.rb +32 -109
- data/lib/yousign_client/api/file_objects_api.rb +16 -58
- data/lib/yousign_client/api/files_api.rb +16 -58
- data/lib/yousign_client/api/members_api.rb +20 -69
- data/lib/yousign_client/api/operations_api.rb +8 -29
- data/lib/yousign_client/api/organizations_api.rb +4 -11
- data/lib/yousign_client/api/procedures_api.rb +36 -127
- data/lib/yousign_client/api/server_stamps_api.rb +8 -29
- data/lib/yousign_client/api/signature_u_is_api.rb +40 -152
- data/lib/yousign_client/api/user_groups_api.rb +8 -22
- data/lib/yousign_client/api/users_api.rb +20 -69
- data/lib/yousign_client/api/workspaces_api.rb +4 -11
- data/lib/yousign_client/configuration.rb +1 -1
- data/lib/yousign_client/models/check_document_bank_accounts_output.rb +0 -15
- data/lib/yousign_client/models/check_document_identities_output.rb +0 -15
- data/lib/yousign_client/models/file_object_input.rb +0 -15
- data/lib/yousign_client/models/file_object_input_without_file_reference.rb +0 -15
- data/lib/yousign_client/models/file_object_output.rb +0 -30
- data/lib/yousign_client/models/file_object_output_without_file_reference.rb +0 -30
- data/lib/yousign_client/models/file_output.rb +0 -30
- data/lib/yousign_client/models/inwebo_user_request.rb +0 -15
- data/lib/yousign_client/models/member_input.rb +2 -2
- data/lib/yousign_client/models/member_output.rb +2 -17
- data/lib/yousign_client/models/organization_output.rb +0 -15
- data/lib/yousign_client/models/procedure_output.rb +0 -45
- data/lib/yousign_client/models/user_group.rb +0 -15
- data/lib/yousign_client/models/user_output.rb +0 -15
- data/lib/yousign_client/models/user_workspace_output.rb +0 -15
- data/lib/yousign_client/models/workspace_output.rb +0 -15
- data/lib/yousign_client/version.rb +1 -1
- data/spec/api/authentications_api_spec.rb +0 -9
- data/spec/api/check_documents_api_spec.rb +0 -6
- data/spec/api/consent_processes_api_spec.rb +0 -11
- data/spec/api/file_objects_api_spec.rb +0 -6
- data/spec/api/files_api_spec.rb +0 -6
- data/spec/api/members_api_spec.rb +0 -7
- data/spec/api/operations_api_spec.rb +0 -3
- data/spec/api/organizations_api_spec.rb +0 -1
- data/spec/api/procedures_api_spec.rb +0 -13
- data/spec/api/server_stamps_api_spec.rb +0 -3
- data/spec/api/signature_u_is_api_spec.rb +0 -16
- data/spec/api/user_groups_api_spec.rb +0 -2
- data/spec/api/users_api_spec.rb +0 -7
- data/spec/api/workspaces_api_spec.rb +0 -1
- data/spec/models/member_input_spec.rb +1 -1
- data/spec/models/member_output_spec.rb +1 -1
- data/update_client.sh +0 -4
- data/yousign_client.gemspec +1 -1
- data/yousign_openapi.json +53 -704
- metadata +7 -4
@@ -257,10 +257,6 @@ module YousignClient
|
|
257
257
|
# @return Array for valid properties with the reasons
|
258
258
|
def list_invalid_properties
|
259
259
|
invalid_properties = Array.new
|
260
|
-
if !@id.nil? && @id !~ Regexp.new(/^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/)
|
261
|
-
invalid_properties.push('invalid value for "id", must conform to the pattern /^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/.')
|
262
|
-
end
|
263
|
-
|
264
260
|
if @firstname.nil?
|
265
261
|
invalid_properties.push('invalid value for "firstname", firstname cannot be nil.')
|
266
262
|
end
|
@@ -279,7 +275,6 @@ module YousignClient
|
|
279
275
|
# Check to see if the all the properties in the model are valid
|
280
276
|
# @return true if the model is valid
|
281
277
|
def valid?
|
282
|
-
return false if !@id.nil? && @id !~ Regexp.new(/^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/)
|
283
278
|
return false if @firstname.nil?
|
284
279
|
return false if @lastname.nil?
|
285
280
|
return false if @email.nil?
|
@@ -288,16 +283,6 @@ module YousignClient
|
|
288
283
|
true
|
289
284
|
end
|
290
285
|
|
291
|
-
# Custom attribute writer method with validation
|
292
|
-
# @param [Object] id Value to be assigned
|
293
|
-
def id=(id)
|
294
|
-
if !id.nil? && id !~ Regexp.new(/^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/)
|
295
|
-
fail ArgumentError, 'invalid value for "id", must conform to the pattern /^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/.'
|
296
|
-
end
|
297
|
-
|
298
|
-
@id = id
|
299
|
-
end
|
300
|
-
|
301
286
|
# Custom attribute writer method checking allowed values (enum).
|
302
287
|
# @param [Object] status Object to be assigned
|
303
288
|
def status=(status)
|
@@ -57,30 +57,15 @@ module YousignClient
|
|
57
57
|
# @return Array for valid properties with the reasons
|
58
58
|
def list_invalid_properties
|
59
59
|
invalid_properties = Array.new
|
60
|
-
if !@id.nil? && @id !~ Regexp.new(/^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/)
|
61
|
-
invalid_properties.push('invalid value for "id", must conform to the pattern /^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/.')
|
62
|
-
end
|
63
|
-
|
64
60
|
invalid_properties
|
65
61
|
end
|
66
62
|
|
67
63
|
# Check to see if the all the properties in the model are valid
|
68
64
|
# @return true if the model is valid
|
69
65
|
def valid?
|
70
|
-
return false if !@id.nil? && @id !~ Regexp.new(/^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/)
|
71
66
|
true
|
72
67
|
end
|
73
68
|
|
74
|
-
# Custom attribute writer method with validation
|
75
|
-
# @param [Object] id Value to be assigned
|
76
|
-
def id=(id)
|
77
|
-
if !id.nil? && id !~ Regexp.new(/^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/)
|
78
|
-
fail ArgumentError, 'invalid value for "id", must conform to the pattern /^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/.'
|
79
|
-
end
|
80
|
-
|
81
|
-
@id = id
|
82
|
-
end
|
83
|
-
|
84
69
|
# Checks equality by comparing each attribute.
|
85
70
|
# @param [Object] Object to be compared
|
86
71
|
def ==(o)
|
@@ -115,30 +115,15 @@ module YousignClient
|
|
115
115
|
# @return Array for valid properties with the reasons
|
116
116
|
def list_invalid_properties
|
117
117
|
invalid_properties = Array.new
|
118
|
-
if !@id.nil? && @id !~ Regexp.new(/^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/)
|
119
|
-
invalid_properties.push('invalid value for "id", must conform to the pattern /^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/.')
|
120
|
-
end
|
121
|
-
|
122
118
|
invalid_properties
|
123
119
|
end
|
124
120
|
|
125
121
|
# Check to see if the all the properties in the model are valid
|
126
122
|
# @return true if the model is valid
|
127
123
|
def valid?
|
128
|
-
return false if !@id.nil? && @id !~ Regexp.new(/^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/)
|
129
124
|
true
|
130
125
|
end
|
131
126
|
|
132
|
-
# Custom attribute writer method with validation
|
133
|
-
# @param [Object] id Value to be assigned
|
134
|
-
def id=(id)
|
135
|
-
if !id.nil? && id !~ Regexp.new(/^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/)
|
136
|
-
fail ArgumentError, 'invalid value for "id", must conform to the pattern /^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/.'
|
137
|
-
end
|
138
|
-
|
139
|
-
@id = id
|
140
|
-
end
|
141
|
-
|
142
127
|
# Checks equality by comparing each attribute.
|
143
128
|
# @param [Object] Object to be compared
|
144
129
|
def ==(o)
|
@@ -35,7 +35,6 @@ describe 'AuthenticationsApi' do
|
|
35
35
|
# unit tests for authentications_email_id_get
|
36
36
|
# Find an Authentication by ID
|
37
37
|
# @param id
|
38
|
-
# @param authorization Authentication credentials for HTTP authentication
|
39
38
|
# @param [Hash] opts the optional parameters
|
40
39
|
# @return [AuthenticationEmailOutput]
|
41
40
|
describe 'authentications_email_id_get test' do
|
@@ -47,8 +46,6 @@ describe 'AuthenticationsApi' do
|
|
47
46
|
# unit tests for authentications_email_id_put
|
48
47
|
# Update an Email Authentication
|
49
48
|
# @param id
|
50
|
-
# @param authorization Authentication credentials for HTTP authentication
|
51
|
-
# @param content_type The MIME type of the body of the request
|
52
49
|
# @param body
|
53
50
|
# @param [Hash] opts the optional parameters
|
54
51
|
# @return [AuthenticationEmailOutput]
|
@@ -61,7 +58,6 @@ describe 'AuthenticationsApi' do
|
|
61
58
|
# unit tests for authentications_inwebo_id_get
|
62
59
|
# Get an Authentication
|
63
60
|
# @param id
|
64
|
-
# @param authorization Authentication credentials for HTTP authentication
|
65
61
|
# @param [Hash] opts the optional parameters
|
66
62
|
# @return [AuthenticationInweboOutput]
|
67
63
|
describe 'authentications_inwebo_id_get test' do
|
@@ -73,8 +69,6 @@ describe 'AuthenticationsApi' do
|
|
73
69
|
# unit tests for authentications_inwebo_id_put
|
74
70
|
# Update an inwebo Authentication
|
75
71
|
# @param id
|
76
|
-
# @param authorization Authentication credentials for HTTP authentication
|
77
|
-
# @param content_type The MIME type of the body of the request
|
78
72
|
# @param body
|
79
73
|
# @param [Hash] opts the optional parameters
|
80
74
|
# @return [AuthenticationInweboOutput]
|
@@ -87,7 +81,6 @@ describe 'AuthenticationsApi' do
|
|
87
81
|
# unit tests for authentications_sms_id_get
|
88
82
|
# Find an Authentication by ID
|
89
83
|
# @param id
|
90
|
-
# @param authorization Authentication credentials for HTTP authentication
|
91
84
|
# @param [Hash] opts the optional parameters
|
92
85
|
# @return [AuthenticationSmsOutput]
|
93
86
|
describe 'authentications_sms_id_get test' do
|
@@ -99,8 +92,6 @@ describe 'AuthenticationsApi' do
|
|
99
92
|
# unit tests for authentications_sms_id_put
|
100
93
|
# Update an SMS Authentication
|
101
94
|
# @param id
|
102
|
-
# @param authorization Authentication credentials for HTTP authentication
|
103
|
-
# @param content_type The MIME type of the body of the request
|
104
95
|
# @param body
|
105
96
|
# @param [Hash] opts the optional parameters
|
106
97
|
# @return [AuthenticationSmsOutput]
|
@@ -35,7 +35,6 @@ describe 'CheckDocumentsApi' do
|
|
35
35
|
# unit tests for check_document_bank_accounts_id_get
|
36
36
|
# Get informations about a bank document (RIB)
|
37
37
|
# @param id
|
38
|
-
# @param authorization Authentication credentials for HTTP authentication
|
39
38
|
# @param [Hash] opts the optional parameters
|
40
39
|
# @return [CheckDocumentBankAccountsOutput]
|
41
40
|
describe 'check_document_bank_accounts_id_get test' do
|
@@ -46,8 +45,6 @@ describe 'CheckDocumentsApi' do
|
|
46
45
|
|
47
46
|
# unit tests for check_document_bank_accounts_post
|
48
47
|
# Verify a bank document (RIB)
|
49
|
-
# @param authorization Authentication credentials for HTTP authentication
|
50
|
-
# @param content_type The MIME type of the body of the request
|
51
48
|
# @param body
|
52
49
|
# @param [Hash] opts the optional parameters
|
53
50
|
# @return [CheckDocumentBankAccountsOutput]
|
@@ -60,7 +57,6 @@ describe 'CheckDocumentsApi' do
|
|
60
57
|
# unit tests for check_document_identities_id_get
|
61
58
|
# Get informations about an identity document (passport, id cards)
|
62
59
|
# @param id
|
63
|
-
# @param authorization Authentication credentials for HTTP authentication
|
64
60
|
# @param [Hash] opts the optional parameters
|
65
61
|
# @return [CheckDocumentIdentitiesOutput]
|
66
62
|
describe 'check_document_identities_id_get test' do
|
@@ -71,8 +67,6 @@ describe 'CheckDocumentsApi' do
|
|
71
67
|
|
72
68
|
# unit tests for check_document_identities_post
|
73
69
|
# Verify an identity document (passport, id cards)
|
74
|
-
# @param authorization Authentication credentials for HTTP authentication
|
75
|
-
# @param content_type The MIME type of the body of the request
|
76
70
|
# @param body
|
77
71
|
# @param [Hash] opts the optional parameters
|
78
72
|
# @return [CheckDocumentIdentitiesOutput]
|
@@ -35,7 +35,6 @@ describe 'ConsentProcessesApi' do
|
|
35
35
|
# unit tests for consent_process_values_get
|
36
36
|
# Get list of Consent Process Value
|
37
37
|
# @param member id of member
|
38
|
-
# @param authorization Authentication credentials for HTTP authentication
|
39
38
|
# @param [Hash] opts the optional parameters
|
40
39
|
# @return [ConsentProcessValueOutput]
|
41
40
|
describe 'consent_process_values_get test' do
|
@@ -47,7 +46,6 @@ describe 'ConsentProcessesApi' do
|
|
47
46
|
# unit tests for consent_process_values_id_get
|
48
47
|
# Get a Consent Process Value
|
49
48
|
# @param id
|
50
|
-
# @param authorization Authentication credentials for HTTP authentication
|
51
49
|
# @param [Hash] opts the optional parameters
|
52
50
|
# @option opts [String] :member id of member (required for anonymous)
|
53
51
|
# @return [ConsentProcessValueOutput]
|
@@ -59,8 +57,6 @@ describe 'ConsentProcessesApi' do
|
|
59
57
|
|
60
58
|
# unit tests for consent_process_values_post
|
61
59
|
# Create a new Consent Process Value
|
62
|
-
# @param authorization Authentication credentials for HTTP authentication
|
63
|
-
# @param content_type The MIME type of the body of the request
|
64
60
|
# @param body
|
65
61
|
# @param [Hash] opts the optional parameters
|
66
62
|
# @return [ConsentProcessValueOutput]
|
@@ -72,7 +68,6 @@ describe 'ConsentProcessesApi' do
|
|
72
68
|
|
73
69
|
# unit tests for consent_processes_get
|
74
70
|
# Get list of Consent Processes
|
75
|
-
# @param authorization Authentication credentials for HTTP authentication
|
76
71
|
# @param [Hash] opts the optional parameters
|
77
72
|
# @option opts [String] :member id of member (required for anonymous)
|
78
73
|
# @option opts [String] :procedure id of procedure (required if the member attribut is not set)
|
@@ -86,7 +81,6 @@ describe 'ConsentProcessesApi' do
|
|
86
81
|
# unit tests for consent_processes_id_delete
|
87
82
|
# Delete a Consent Process
|
88
83
|
# @param id
|
89
|
-
# @param authorization Authentication credentials for HTTP authentication
|
90
84
|
# @param [Hash] opts the optional parameters
|
91
85
|
# @return [nil]
|
92
86
|
describe 'consent_processes_id_delete test' do
|
@@ -98,7 +92,6 @@ describe 'ConsentProcessesApi' do
|
|
98
92
|
# unit tests for consent_processes_id_get
|
99
93
|
# Get a Consent Process
|
100
94
|
# @param id
|
101
|
-
# @param authorization Authentication credentials for HTTP authentication
|
102
95
|
# @param [Hash] opts the optional parameters
|
103
96
|
# @option opts [String] :member id of member (required for anonymous)
|
104
97
|
# @return [ConsentProcessOutput]
|
@@ -111,8 +104,6 @@ describe 'ConsentProcessesApi' do
|
|
111
104
|
# unit tests for consent_processes_id_put
|
112
105
|
# Update a Consent Process
|
113
106
|
# @param id
|
114
|
-
# @param authorization Authentication credentials for HTTP authentication
|
115
|
-
# @param content_type The MIME type of the body of the request
|
116
107
|
# @param body
|
117
108
|
# @param [Hash] opts the optional parameters
|
118
109
|
# @return [ConsentProcessOutput]
|
@@ -124,8 +115,6 @@ describe 'ConsentProcessesApi' do
|
|
124
115
|
|
125
116
|
# unit tests for consent_processes_post
|
126
117
|
# Create a new Consent Process
|
127
|
-
# @param authorization Authentication credentials for HTTP authentication
|
128
|
-
# @param content_type The MIME type of the body of the request
|
129
118
|
# @param body
|
130
119
|
# @param [Hash] opts the optional parameters
|
131
120
|
# @return [ConsentProcessOutput]
|
@@ -36,7 +36,6 @@ describe 'FileObjectsApi' do
|
|
36
36
|
# Delete a File Object
|
37
37
|
# Delete a File Object
|
38
38
|
# @param id
|
39
|
-
# @param authorization Authentication credentials for HTTP authentication
|
40
39
|
# @param [Hash] opts the optional parameters
|
41
40
|
# @return [nil]
|
42
41
|
describe 'file_objects_id_delete test' do
|
@@ -49,7 +48,6 @@ describe 'FileObjectsApi' do
|
|
49
48
|
# Find a File Object by ID
|
50
49
|
# Get a File Object
|
51
50
|
# @param id
|
52
|
-
# @param authorization Authentication credentials for HTTP authentication
|
53
51
|
# @param [Hash] opts the optional parameters
|
54
52
|
# @return [FileObjectOutput]
|
55
53
|
describe 'file_objects_id_get test' do
|
@@ -62,8 +60,6 @@ describe 'FileObjectsApi' do
|
|
62
60
|
# Update a File Object
|
63
61
|
# Update a File Object
|
64
62
|
# @param id
|
65
|
-
# @param authorization Authentication credentials for HTTP authentication
|
66
|
-
# @param content_type The MIME type of the body of the request
|
67
63
|
# @param body
|
68
64
|
# @param [Hash] opts the optional parameters
|
69
65
|
# @return [FileObjectOutput]
|
@@ -76,8 +72,6 @@ describe 'FileObjectsApi' do
|
|
76
72
|
# unit tests for file_objects_post
|
77
73
|
# Create a new File Object
|
78
74
|
# Create a new fileObject
|
79
|
-
# @param authorization Authentication credentials for HTTP authentication
|
80
|
-
# @param content_type The MIME type of the body of the request
|
81
75
|
# @param body
|
82
76
|
# @param [Hash] opts the optional parameters
|
83
77
|
# @return [FileObjectOutput]
|
data/spec/api/files_api_spec.rb
CHANGED
@@ -36,7 +36,6 @@ describe 'FilesApi' do
|
|
36
36
|
# Download a File
|
37
37
|
# Used to get the base64 content of a file
|
38
38
|
# @param id
|
39
|
-
# @param authorization Authentication credentials for HTTP authentication
|
40
39
|
# @param [Hash] opts the optional parameters
|
41
40
|
# @return [String]
|
42
41
|
describe 'files_id_download_get test' do
|
@@ -49,8 +48,6 @@ describe 'FilesApi' do
|
|
49
48
|
# Duplicate a File
|
50
49
|
# Duplicate a file. It will be create a clone of this file, with a new ID.
|
51
50
|
# @param id
|
52
|
-
# @param authorization Authentication credentials for HTTP authentication
|
53
|
-
# @param content_type The MIME type of the body of the request
|
54
51
|
# @param [Hash] opts the optional parameters
|
55
52
|
# @return [FileOutput]
|
56
53
|
describe 'files_id_duplicate_post test' do
|
@@ -63,7 +60,6 @@ describe 'FilesApi' do
|
|
63
60
|
# Find a File by ID
|
64
61
|
# Returns all the information regarding the File but without its content (for performance issue).
|
65
62
|
# @param id
|
66
|
-
# @param authorization Authentication credentials for HTTP authentication
|
67
63
|
# @param [Hash] opts the optional parameters
|
68
64
|
# @return [FileOutput]
|
69
65
|
describe 'files_id_get test' do
|
@@ -75,8 +71,6 @@ describe 'FilesApi' do
|
|
75
71
|
# unit tests for files_post
|
76
72
|
# Create a new File
|
77
73
|
# Used to upload a file in base64 on our platform
|
78
|
-
# @param authorization Authentication credentials for HTTP authentication
|
79
|
-
# @param content_type The MIME type of the body of the request
|
80
74
|
# @param body
|
81
75
|
# @param [Hash] opts the optional parameters
|
82
76
|
# @return [FileOutput]
|
@@ -35,7 +35,6 @@ describe 'MembersApi' do
|
|
35
35
|
# unit tests for members_get
|
36
36
|
# Get all Members
|
37
37
|
# Returns the list of Members of a organization. It only usefull if you use the query params named \"procedure\" for retrieve all members of a procedure.
|
38
|
-
# @param authorization Authentication credentials for HTTP authentication
|
39
38
|
# @param [Hash] opts the optional parameters
|
40
39
|
# @option opts [String] :procedure
|
41
40
|
# @return [Array<MemberOutput>]
|
@@ -49,7 +48,6 @@ describe 'MembersApi' do
|
|
49
48
|
# Delete a Member
|
50
49
|
# Delete a member
|
51
50
|
# @param id
|
52
|
-
# @param authorization Authentication credentials for HTTP authentication
|
53
51
|
# @param [Hash] opts the optional parameters
|
54
52
|
# @return [nil]
|
55
53
|
describe 'members_id_delete test' do
|
@@ -62,7 +60,6 @@ describe 'MembersApi' do
|
|
62
60
|
# Get a proof file of a Member
|
63
61
|
# Get a proof file of a member
|
64
62
|
# @param id
|
65
|
-
# @param authorization Authentication credentials for HTTP authentication
|
66
63
|
# @param [Hash] opts the optional parameters
|
67
64
|
# @return [String]
|
68
65
|
describe 'members_id_proof_get test' do
|
@@ -75,8 +72,6 @@ describe 'MembersApi' do
|
|
75
72
|
# Edit a Member
|
76
73
|
# Edit a member
|
77
74
|
# @param id
|
78
|
-
# @param authorization Authentication credentials for HTTP authentication
|
79
|
-
# @param content_type The MIME type of the body of the request
|
80
75
|
# @param body
|
81
76
|
# @param [Hash] opts the optional parameters
|
82
77
|
# @return [MemberOutput]
|
@@ -89,8 +84,6 @@ describe 'MembersApi' do
|
|
89
84
|
# unit tests for members_post
|
90
85
|
# Create a new Member
|
91
86
|
# Create a new member
|
92
|
-
# @param authorization Authentication credentials for HTTP authentication
|
93
|
-
# @param content_type The MIME type of the body of the request
|
94
87
|
# @param body
|
95
88
|
# @param [Hash] opts the optional parameters
|
96
89
|
# @return [MemberOutput]
|
@@ -35,7 +35,6 @@ describe 'OperationsApi' do
|
|
35
35
|
# unit tests for operations_id_get
|
36
36
|
# Find an Operation by ID
|
37
37
|
# @param id
|
38
|
-
# @param authorization Authentication credentials for HTTP authentication
|
39
38
|
# @param [Hash] opts the optional parameters
|
40
39
|
# @return [OperationOutput]
|
41
40
|
describe 'operations_id_get test' do
|
@@ -46,8 +45,6 @@ describe 'OperationsApi' do
|
|
46
45
|
|
47
46
|
# unit tests for operations_post
|
48
47
|
# Create a new Operation
|
49
|
-
# @param authorization Authentication credentials for HTTP authentication
|
50
|
-
# @param content_type The MIME type of the body of the request
|
51
48
|
# @param body
|
52
49
|
# @param [Hash] opts the optional parameters
|
53
50
|
# @return [OperationOutput]
|
@@ -34,7 +34,6 @@ describe 'OrganizationsApi' do
|
|
34
34
|
|
35
35
|
# unit tests for organizations_get
|
36
36
|
# List all Organizations
|
37
|
-
# @param authorization Authentication credentials for HTTP authentication
|
38
37
|
# @param [Hash] opts the optional parameters
|
39
38
|
# @return [Array<OrganizationOutput>]
|
40
39
|
describe 'organizations_get test' do
|
@@ -34,7 +34,6 @@ describe 'ProceduresApi' do
|
|
34
34
|
|
35
35
|
# unit tests for export_procedures_get
|
36
36
|
# Export Procedure list
|
37
|
-
# @param authorization Authentication credentials for HTTP authentication
|
38
37
|
# @param [Hash] opts the optional parameters
|
39
38
|
# @option opts [String] :status Return Procedure list based on the status for each Procedure
|
40
39
|
# @option opts [String] :name Filter by name (contains)
|
@@ -57,7 +56,6 @@ describe 'ProceduresApi' do
|
|
57
56
|
|
58
57
|
# unit tests for procedures_get
|
59
58
|
# Get Procedure list
|
60
|
-
# @param authorization Authentication credentials for HTTP authentication
|
61
59
|
# @param [Hash] opts the optional parameters
|
62
60
|
# @option opts [String] :status Return Procedure list based on the status for each Procedure
|
63
61
|
# @option opts [BOOLEAN] :template Used to get Procedure template list
|
@@ -86,7 +84,6 @@ describe 'ProceduresApi' do
|
|
86
84
|
# unit tests for procedures_id_delete
|
87
85
|
# Delete a Procedure
|
88
86
|
# @param id
|
89
|
-
# @param authorization Authentication credentials for HTTP authentication
|
90
87
|
# @param [Hash] opts the optional parameters
|
91
88
|
# @return [nil]
|
92
89
|
describe 'procedures_id_delete test' do
|
@@ -98,8 +95,6 @@ describe 'ProceduresApi' do
|
|
98
95
|
# unit tests for procedures_id_duplicate_post
|
99
96
|
# Duplicate a Procedure
|
100
97
|
# @param id
|
101
|
-
# @param authorization Authentication credentials for HTTP authentication
|
102
|
-
# @param content_type The MIME type of the body of the request
|
103
98
|
# @param body
|
104
99
|
# @param [Hash] opts the optional parameters
|
105
100
|
# @return [ProcedureOutput]
|
@@ -112,7 +107,6 @@ describe 'ProceduresApi' do
|
|
112
107
|
# unit tests for procedures_id_get
|
113
108
|
# Find a Procedure by ID
|
114
109
|
# @param id
|
115
|
-
# @param authorization Authentication credentials for HTTP authentication
|
116
110
|
# @param [Hash] opts the optional parameters
|
117
111
|
# @return [ProcedureOutput]
|
118
112
|
describe 'procedures_id_get test' do
|
@@ -125,7 +119,6 @@ describe 'ProceduresApi' do
|
|
125
119
|
# Get a Procedure proof file
|
126
120
|
# Get a Procedure proof file
|
127
121
|
# @param id
|
128
|
-
# @param authorization Authentication credentials for HTTP authentication
|
129
122
|
# @param [Hash] opts the optional parameters
|
130
123
|
# @return [String]
|
131
124
|
describe 'procedures_id_proof_get test' do
|
@@ -137,8 +130,6 @@ describe 'ProceduresApi' do
|
|
137
130
|
# unit tests for procedures_id_put
|
138
131
|
# Update a Procedure
|
139
132
|
# @param id
|
140
|
-
# @param authorization Authentication credentials for HTTP authentication
|
141
|
-
# @param content_type The MIME type of the body of the request
|
142
133
|
# @param body
|
143
134
|
# @param [Hash] opts the optional parameters
|
144
135
|
# @return [ProcedureOutput]
|
@@ -151,8 +142,6 @@ describe 'ProceduresApi' do
|
|
151
142
|
# unit tests for procedures_id_remind_post
|
152
143
|
# Remind a Procedure
|
153
144
|
# @param id
|
154
|
-
# @param authorization Authentication credentials for HTTP authentication
|
155
|
-
# @param content_type The MIME type of the body of the request
|
156
145
|
# @param body
|
157
146
|
# @param [Hash] opts the optional parameters
|
158
147
|
# @return [ProcedureOutput]
|
@@ -164,8 +153,6 @@ describe 'ProceduresApi' do
|
|
164
153
|
|
165
154
|
# unit tests for procedures_post
|
166
155
|
# Create a new Procedure
|
167
|
-
# @param authorization Authentication credentials for HTTP authentication
|
168
|
-
# @param content_type The MIME type of the body of the request
|
169
156
|
# @param body
|
170
157
|
# @param [Hash] opts the optional parameters
|
171
158
|
# @return [ProcedureOutput]
|