qovery-typescript-axios 1.1.954 → 1.1.955
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.
- package/api.ts +30 -0
- package/dist/api.d.ts +30 -0
- package/dist/esm/api.d.ts +30 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -21627,6 +21627,18 @@ export interface OrganizationPolicyApiToken {
|
|
|
21627
21627
|
* @memberof OrganizationPolicyApiToken
|
|
21628
21628
|
*/
|
|
21629
21629
|
'description'?: string;
|
|
21630
|
+
/**
|
|
21631
|
+
*
|
|
21632
|
+
* @type {string}
|
|
21633
|
+
* @memberof OrganizationPolicyApiToken
|
|
21634
|
+
*/
|
|
21635
|
+
'role_name'?: string;
|
|
21636
|
+
/**
|
|
21637
|
+
* the organization role this token acts as once its policy has allowed a request. Effective access is the intersection of this role and `opa_policy`.
|
|
21638
|
+
* @type {string}
|
|
21639
|
+
* @memberof OrganizationPolicyApiToken
|
|
21640
|
+
*/
|
|
21641
|
+
'role_id'?: string;
|
|
21630
21642
|
/**
|
|
21631
21643
|
* the Open Policy Agent (rego) policy evaluated on every request made with this token
|
|
21632
21644
|
* @type {string}
|
|
@@ -21682,6 +21694,18 @@ export interface OrganizationPolicyApiTokenCreate {
|
|
|
21682
21694
|
* @memberof OrganizationPolicyApiTokenCreate
|
|
21683
21695
|
*/
|
|
21684
21696
|
'description'?: string;
|
|
21697
|
+
/**
|
|
21698
|
+
*
|
|
21699
|
+
* @type {string}
|
|
21700
|
+
* @memberof OrganizationPolicyApiTokenCreate
|
|
21701
|
+
*/
|
|
21702
|
+
'role_name'?: string;
|
|
21703
|
+
/**
|
|
21704
|
+
* the organization role this token acts as once its policy has allowed a request. Effective access is the intersection of this role and its policy.
|
|
21705
|
+
* @type {string}
|
|
21706
|
+
* @memberof OrganizationPolicyApiTokenCreate
|
|
21707
|
+
*/
|
|
21708
|
+
'role_id'?: string;
|
|
21685
21709
|
/**
|
|
21686
21710
|
* the generated token to send in \'Authorization\' header prefixed by \'Token \'. It is returned only here and cannot be retrieved afterwards.
|
|
21687
21711
|
* @type {string}
|
|
@@ -21731,6 +21755,12 @@ export interface OrganizationPolicyApiTokenCreateRequest {
|
|
|
21731
21755
|
* @memberof OrganizationPolicyApiTokenCreateRequest
|
|
21732
21756
|
*/
|
|
21733
21757
|
'opa_policy': string;
|
|
21758
|
+
/**
|
|
21759
|
+
* the roleId provided by the \"List organization custom roles\" endpoint. The role bounds what the token may do once its policy has allowed a request, so effective access is the intersection of the two. Omit it, or send null, for organization-admin.
|
|
21760
|
+
* @type {string}
|
|
21761
|
+
* @memberof OrganizationPolicyApiTokenCreateRequest
|
|
21762
|
+
*/
|
|
21763
|
+
'role_id'?: string | null;
|
|
21734
21764
|
/**
|
|
21735
21765
|
*
|
|
21736
21766
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -21006,6 +21006,18 @@ export interface OrganizationPolicyApiToken {
|
|
|
21006
21006
|
* @memberof OrganizationPolicyApiToken
|
|
21007
21007
|
*/
|
|
21008
21008
|
'description'?: string;
|
|
21009
|
+
/**
|
|
21010
|
+
*
|
|
21011
|
+
* @type {string}
|
|
21012
|
+
* @memberof OrganizationPolicyApiToken
|
|
21013
|
+
*/
|
|
21014
|
+
'role_name'?: string;
|
|
21015
|
+
/**
|
|
21016
|
+
* the organization role this token acts as once its policy has allowed a request. Effective access is the intersection of this role and `opa_policy`.
|
|
21017
|
+
* @type {string}
|
|
21018
|
+
* @memberof OrganizationPolicyApiToken
|
|
21019
|
+
*/
|
|
21020
|
+
'role_id'?: string;
|
|
21009
21021
|
/**
|
|
21010
21022
|
* the Open Policy Agent (rego) policy evaluated on every request made with this token
|
|
21011
21023
|
* @type {string}
|
|
@@ -21061,6 +21073,18 @@ export interface OrganizationPolicyApiTokenCreate {
|
|
|
21061
21073
|
* @memberof OrganizationPolicyApiTokenCreate
|
|
21062
21074
|
*/
|
|
21063
21075
|
'description'?: string;
|
|
21076
|
+
/**
|
|
21077
|
+
*
|
|
21078
|
+
* @type {string}
|
|
21079
|
+
* @memberof OrganizationPolicyApiTokenCreate
|
|
21080
|
+
*/
|
|
21081
|
+
'role_name'?: string;
|
|
21082
|
+
/**
|
|
21083
|
+
* the organization role this token acts as once its policy has allowed a request. Effective access is the intersection of this role and its policy.
|
|
21084
|
+
* @type {string}
|
|
21085
|
+
* @memberof OrganizationPolicyApiTokenCreate
|
|
21086
|
+
*/
|
|
21087
|
+
'role_id'?: string;
|
|
21064
21088
|
/**
|
|
21065
21089
|
* the generated token to send in \'Authorization\' header prefixed by \'Token \'. It is returned only here and cannot be retrieved afterwards.
|
|
21066
21090
|
* @type {string}
|
|
@@ -21110,6 +21134,12 @@ export interface OrganizationPolicyApiTokenCreateRequest {
|
|
|
21110
21134
|
* @memberof OrganizationPolicyApiTokenCreateRequest
|
|
21111
21135
|
*/
|
|
21112
21136
|
'opa_policy': string;
|
|
21137
|
+
/**
|
|
21138
|
+
* the roleId provided by the \"List organization custom roles\" endpoint. The role bounds what the token may do once its policy has allowed a request, so effective access is the intersection of the two. Omit it, or send null, for organization-admin.
|
|
21139
|
+
* @type {string}
|
|
21140
|
+
* @memberof OrganizationPolicyApiTokenCreateRequest
|
|
21141
|
+
*/
|
|
21142
|
+
'role_id'?: string | null;
|
|
21113
21143
|
/**
|
|
21114
21144
|
*
|
|
21115
21145
|
* @type {string}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -21006,6 +21006,18 @@ export interface OrganizationPolicyApiToken {
|
|
|
21006
21006
|
* @memberof OrganizationPolicyApiToken
|
|
21007
21007
|
*/
|
|
21008
21008
|
'description'?: string;
|
|
21009
|
+
/**
|
|
21010
|
+
*
|
|
21011
|
+
* @type {string}
|
|
21012
|
+
* @memberof OrganizationPolicyApiToken
|
|
21013
|
+
*/
|
|
21014
|
+
'role_name'?: string;
|
|
21015
|
+
/**
|
|
21016
|
+
* the organization role this token acts as once its policy has allowed a request. Effective access is the intersection of this role and `opa_policy`.
|
|
21017
|
+
* @type {string}
|
|
21018
|
+
* @memberof OrganizationPolicyApiToken
|
|
21019
|
+
*/
|
|
21020
|
+
'role_id'?: string;
|
|
21009
21021
|
/**
|
|
21010
21022
|
* the Open Policy Agent (rego) policy evaluated on every request made with this token
|
|
21011
21023
|
* @type {string}
|
|
@@ -21061,6 +21073,18 @@ export interface OrganizationPolicyApiTokenCreate {
|
|
|
21061
21073
|
* @memberof OrganizationPolicyApiTokenCreate
|
|
21062
21074
|
*/
|
|
21063
21075
|
'description'?: string;
|
|
21076
|
+
/**
|
|
21077
|
+
*
|
|
21078
|
+
* @type {string}
|
|
21079
|
+
* @memberof OrganizationPolicyApiTokenCreate
|
|
21080
|
+
*/
|
|
21081
|
+
'role_name'?: string;
|
|
21082
|
+
/**
|
|
21083
|
+
* the organization role this token acts as once its policy has allowed a request. Effective access is the intersection of this role and its policy.
|
|
21084
|
+
* @type {string}
|
|
21085
|
+
* @memberof OrganizationPolicyApiTokenCreate
|
|
21086
|
+
*/
|
|
21087
|
+
'role_id'?: string;
|
|
21064
21088
|
/**
|
|
21065
21089
|
* the generated token to send in \'Authorization\' header prefixed by \'Token \'. It is returned only here and cannot be retrieved afterwards.
|
|
21066
21090
|
* @type {string}
|
|
@@ -21110,6 +21134,12 @@ export interface OrganizationPolicyApiTokenCreateRequest {
|
|
|
21110
21134
|
* @memberof OrganizationPolicyApiTokenCreateRequest
|
|
21111
21135
|
*/
|
|
21112
21136
|
'opa_policy': string;
|
|
21137
|
+
/**
|
|
21138
|
+
* the roleId provided by the \"List organization custom roles\" endpoint. The role bounds what the token may do once its policy has allowed a request, so effective access is the intersection of the two. Omit it, or send null, for organization-admin.
|
|
21139
|
+
* @type {string}
|
|
21140
|
+
* @memberof OrganizationPolicyApiTokenCreateRequest
|
|
21141
|
+
*/
|
|
21142
|
+
'role_id'?: string | null;
|
|
21113
21143
|
/**
|
|
21114
21144
|
*
|
|
21115
21145
|
* @type {string}
|