-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
129 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
type ConnectPolicyToNSQSParams = { | ||
policyID: string; | ||
// s77rt: ask for the connect params | ||
}; | ||
|
||
export default ConnectPolicyToNSQSParams; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
type SyncPolicyToNSQSParams = { | ||
policyID: string; | ||
idempotencyKey: string; | ||
}; | ||
|
||
export default SyncPolicyToNSQSParams; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
type UpdateNSQSApprovalAccountParams = { | ||
policyID: string; | ||
value: string; | ||
}; | ||
|
||
export default UpdateNSQSApprovalAccountParams; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
type UpdateNSQSAutoSyncParams = { | ||
policyID: string; | ||
enabled: boolean; | ||
}; | ||
|
||
export default UpdateNSQSAutoSyncParams; |
4 changes: 2 additions & 2 deletions
4
.../parameters/UpdateNSQSCustomersMapping.ts → ...eters/UpdateNSQSCustomersMappingParams.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import type {ValueOf} from 'type-fest'; | ||
import type CONST from '@src/CONST'; | ||
|
||
type UpdateNSQSCustomersMapping = { | ||
type UpdateNSQSCustomersMappingParams = { | ||
policyID: string; | ||
mapping: ValueOf<typeof CONST.NSQS_INTEGRATION_ENTITY_MAP_TYPES>; | ||
}; | ||
|
||
export default UpdateNSQSCustomersMapping; | ||
export default UpdateNSQSCustomersMappingParams; |
4 changes: 2 additions & 2 deletions
4
...bs/API/parameters/UpdateNSQSExportDate.ts → .../parameters/UpdateNSQSExportDateParams.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import type {ValueOf} from 'type-fest'; | ||
import type CONST from '@src/CONST'; | ||
|
||
type UpdateNSQSExportDate = { | ||
type UpdateNSQSExportDateParams = { | ||
policyID: string; | ||
value: ValueOf<typeof CONST.NSQS_CONFIG.EXPORT_DATE>; | ||
}; | ||
|
||
export default UpdateNSQSExportDate; | ||
export default UpdateNSQSExportDateParams; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
type UpdateNSQSExporterParams = { | ||
policyID: string; | ||
email: string; | ||
}; | ||
|
||
export default UpdateNSQSExporterParams; |
4 changes: 2 additions & 2 deletions
4
...I/parameters/UpdateNSQSProjectsMapping.ts → ...meters/UpdateNSQSProjectsMappingParams.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import type {ValueOf} from 'type-fest'; | ||
import type CONST from '@src/CONST'; | ||
|
||
type UpdateNSQSProjectsMapping = { | ||
type UpdateNSQSProjectsMappingParams = { | ||
policyID: string; | ||
mapping: ValueOf<typeof CONST.NSQS_INTEGRATION_ENTITY_MAP_TYPES>; | ||
}; | ||
|
||
export default UpdateNSQSProjectsMapping; | ||
export default UpdateNSQSProjectsMappingParams; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters